diff options
| author | Marek Vasut <[email protected]> | 2023-03-19 18:02:38 +0100 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2023-04-07 14:17:24 +0200 |
| commit | 3309c58a0e616e501b43acbda77e9e1a02cb6c33 (patch) | |
| tree | 4e728ca1ddf21991fea7e9382b57f222c5b0d89a /drivers | |
| parent | 5914bec3f086e2e75790d33e3d7a50a614164640 (diff) | |
net: phy: ca_phy: Staticize PHY driver entries
These struct phy_driver ... instances are local to this source code
file, staticize them. No functional change.
Signed-off-by: Marek Vasut <[email protected]>
Acked-by: Michal Simek <[email protected]>
Tested-by: Michal Simek <[email protected]> #microblaze (MANUAL_RELOC)
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/phy/ca_phy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/ca_phy.c b/drivers/net/phy/ca_phy.c index 16851a6820f..9180a41111c 100644 --- a/drivers/net/phy/ca_phy.c +++ b/drivers/net/phy/ca_phy.c @@ -104,7 +104,7 @@ static int rtl8211_probe(struct phy_device *phydev) } /* Support for RTL8211 External PHY */ -struct phy_driver rtl8211_external_driver = { +static struct phy_driver rtl8211_external_driver = { .name = "Cortina RTL8211 External", .uid = PHY_ID_RTL8211_EXT, .mask = PHY_ID_MASK, @@ -115,7 +115,7 @@ struct phy_driver rtl8211_external_driver = { }; /* Support for RTL8211 Internal PHY */ -struct phy_driver rtl8211_internal_driver = { +static struct phy_driver rtl8211_internal_driver = { .name = "Cortina RTL8211 Inrernal", .uid = PHY_ID_RTL8211_INT, .mask = PHY_ID_MASK, |
