aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/phy
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2023-03-19 18:02:38 +0100
committerMarek Vasut <marek.vasut+renesas@mailbox.org>2023-04-07 14:17:24 +0200
commit3309c58a0e616e501b43acbda77e9e1a02cb6c33 (patch)
tree4e728ca1ddf21991fea7e9382b57f222c5b0d89a /drivers/net/phy
parent5914bec3f086e2e75790d33e3d7a50a614164640 (diff)
downloadu-boot-3309c58a0e616e501b43acbda77e9e1a02cb6c33.zip
u-boot-3309c58a0e616e501b43acbda77e9e1a02cb6c33.tar.gz
u-boot-3309c58a0e616e501b43acbda77e9e1a02cb6c33.tar.bz2
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 <marek.vasut+renesas@mailbox.org> Acked-by: Michal Simek <michal.simek@amd.com> Tested-by: Michal Simek <michal.simek@amd.com> #microblaze (MANUAL_RELOC)
Diffstat (limited to 'drivers/net/phy')
-rw-r--r--drivers/net/phy/ca_phy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/ca_phy.c b/drivers/net/phy/ca_phy.c
index 16851a6..9180a41 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,