net: phy: adin: hook genphy_{suspend, resume} into the driver
The chip supports standard suspend/resume via BMCR reg. Hook these functions into the `adin` driver. Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9c1029818c
commit
49cc4c7db4
|
@ -26,6 +26,8 @@ static struct phy_driver adin_driver[] = {
|
|||
.config_init = adin_config_init,
|
||||
.config_aneg = genphy_config_aneg,
|
||||
.read_status = genphy_read_status,
|
||||
.resume = genphy_resume,
|
||||
.suspend = genphy_suspend,
|
||||
},
|
||||
{
|
||||
PHY_ID_MATCH_MODEL(PHY_ID_ADIN1300),
|
||||
|
@ -33,6 +35,8 @@ static struct phy_driver adin_driver[] = {
|
|||
.config_init = adin_config_init,
|
||||
.config_aneg = genphy_config_aneg,
|
||||
.read_status = genphy_read_status,
|
||||
.resume = genphy_resume,
|
||||
.suspend = genphy_suspend,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue