Release 4.12 include/linux/phy_fixed.h
#ifndef __PHY_FIXED_H
#define __PHY_FIXED_H
struct fixed_phy_status {
int link;
int speed;
int duplex;
int pause;
int asym_pause;
};
struct device_node;
#if IS_ENABLED(CONFIG_FIXED_PHY)
extern int fixed_phy_add(unsigned int irq, int phy_id,
struct fixed_phy_status *status,
int link_gpio);
extern struct phy_device *fixed_phy_register(unsigned int irq,
struct fixed_phy_status *status,
int link_gpio,
struct device_node *np);
extern void fixed_phy_unregister(struct phy_device *phydev);
extern int fixed_phy_set_link_update(struct phy_device *phydev,
int (*link_update)(struct net_device *,
struct fixed_phy_status *));
extern int fixed_phy_update_state(struct phy_device *phydev,
const struct fixed_phy_status *status,
const struct fixed_phy_status *changed);
#else
static inline int fixed_phy_add(unsigned int irq, int phy_id,
struct fixed_phy_status *status,
int link_gpio)
{
return -ENODEV;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vitaly Bordug | 23 | 88.46% | 2 | 66.67% |
Andrew Lunn | 3 | 11.54% | 1 | 33.33% |
Total | 26 | 100.00% | 3 | 100.00% |
static inline struct phy_device *fixed_phy_register(unsigned int irq,
struct fixed_phy_status *status,
int gpio_link,
struct device_node *np)
{
return ERR_PTR(-ENODEV);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Petazzoni | 24 | 72.73% | 1 | 33.33% |
Petri Gynther | 6 | 18.18% | 1 | 33.33% |
Andrew Lunn | 3 | 9.09% | 1 | 33.33% |
Total | 33 | 100.00% | 3 | 100.00% |
static inline void fixed_phy_unregister(struct phy_device *phydev)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Lunn | 7 | 63.64% | 1 | 50.00% |
Konrad Zapalowicz | 4 | 36.36% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
static inline int fixed_phy_set_link_update(struct phy_device *phydev,
int (*link_update)(struct net_device *,
struct fixed_phy_status *))
{
return -ENODEV;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vitaly Bordug | 23 | 74.19% | 2 | 66.67% |
Florian Fainelli | 8 | 25.81% | 1 | 33.33% |
Total | 31 | 100.00% | 3 | 100.00% |
static inline int fixed_phy_update_state(struct phy_device *phydev,
const struct fixed_phy_status *status,
const struct fixed_phy_status *changed)
{
return -ENODEV;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stas Sergeev | 28 | 100.00% | 1 | 100.00% |
Total | 28 | 100.00% | 1 | 100.00% |
#endif /* CONFIG_FIXED_PHY */
#endif /* __PHY_FIXED_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vitaly Bordug | 95 | 34.80% | 2 | 20.00% |
Stas Sergeev | 50 | 18.32% | 1 | 10.00% |
Thomas Petazzoni | 45 | 16.48% | 1 | 10.00% |
Florian Fainelli | 36 | 13.19% | 1 | 10.00% |
Andrew Lunn | 24 | 8.79% | 2 | 20.00% |
Petri Gynther | 9 | 3.30% | 1 | 10.00% |
Konrad Zapalowicz | 9 | 3.30% | 1 | 10.00% |
David S. Miller | 5 | 1.83% | 1 | 10.00% |
Total | 273 | 100.00% | 10 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.