diff options
Diffstat (limited to 'include/linux/phy.h')
| -rw-r--r-- | include/linux/phy.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index d7069539f351..7c4c2379e010 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -984,6 +984,10 @@ static inline int genphy_no_soft_reset(struct phy_device *phydev)  {  	return 0;  } +int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, +				u16 regnum); +int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum, +				 u16 regnum, u16 val);  /* Clause 45 PHY */  int genphy_c45_restart_aneg(struct phy_device *phydev); @@ -1012,7 +1016,6 @@ int phy_driver_register(struct phy_driver *new_driver, struct module *owner);  int phy_drivers_register(struct phy_driver *new_driver, int n,  			 struct module *owner);  void phy_state_machine(struct work_struct *work); -void phy_change(struct phy_device *phydev);  void phy_change_work(struct work_struct *work);  void phy_mac_interrupt(struct phy_device *phydev);  void phy_start_machine(struct phy_device *phydev);  |