diff options
author | Andrew Lunn <andrew@lunn.ch> | 2020-07-07 03:49:35 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-07 12:47:10 -0700 |
commit | 3970ed49a46bd0b062870edcc0894b2bd820371d (patch) | |
tree | 0ad7e828a9fbee2e4a6f0fbe83a65d2270832389 /include/linux | |
parent | 19c5a5fec30bde10d269a9f638566195016c90ed (diff) | |
download | linux-stable-3970ed49a46bd0b062870edcc0894b2bd820371d.tar.gz linux-stable-3970ed49a46bd0b062870edcc0894b2bd820371d.tar.bz2 linux-stable-3970ed49a46bd0b062870edcc0894b2bd820371d.zip |
net: phy: Properly define genphy_c45_driver
Avoid the W=1 warning that symbol 'genphy_c45_driver' was not
declared. Should it be static?
Declare it on the phy header file.
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/phy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 101a48fa6750..1592c3d0e12f 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -1385,6 +1385,9 @@ int genphy_c45_pma_read_abilities(struct phy_device *phydev); int genphy_c45_read_status(struct phy_device *phydev); int genphy_c45_config_aneg(struct phy_device *phydev); +/* Generic C45 PHY driver */ +extern struct phy_driver genphy_c45_driver; + /* The gen10g_* functions are the old Clause 45 stub */ int gen10g_config_aneg(struct phy_device *phydev); |