summaryrefslogtreecommitdiff
path: root/include/phy.h
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2023-03-19 18:03:14 +0100
committerMarek Vasut <marek.vasut+renesas@mailbox.org>2023-04-07 14:18:51 +0200
commit8728d4c032571a8569af14d09d18bf444c30e446 (patch)
treed4aece48e0b8134ec18b79aba5fb320e85de36cc /include/phy.h
parent20bd8e4fcbb537be0f564bbc90e3a571aeeabf8d (diff)
downloadu-boot-8728d4c032571a8569af14d09d18bf444c30e446.tar.gz
net: phy: Drop static phy_drivers list
The static phy_drivers list is superseded by linker list of struct phy_drivers now that all drivers have been converted to the later. Drop the phy_drivers list as well as list_head from struct phy_driver. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Ramon Fried <rfried.dev@gmail.com> Acked-by: Michal Simek <michal.simek@amd.com> Tested-by: Michal Simek <michal.simek@amd.com> #microblaze (MANUAL_RELOC)
Diffstat (limited to 'include/phy.h')
-rw-r--r--include/phy.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/phy.h b/include/phy.h
index 5f4967cb15..5e8ae5e29a 100644
--- a/include/phy.h
+++ b/include/phy.h
@@ -125,8 +125,6 @@ struct phy_driver {
int (*write_mmd)(struct phy_device *phydev, int devad, int reg,
u16 val);
- struct list_head list;
-
/* driver private data */
ulong data;
};