diff options
author | Marek Vasut | 2023-03-19 18:03:14 +0100 |
---|---|---|
committer | Marek Vasut | 2023-04-07 14:18:51 +0200 |
commit | 8728d4c032571a8569af14d09d18bf444c30e446 (patch) | |
tree | d4aece48e0b8134ec18b79aba5fb320e85de36cc /include/phy.h | |
parent | 20bd8e4fcbb537be0f564bbc90e3a571aeeabf8d (diff) |
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.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/phy.h b/include/phy.h index 5f4967cb150..5e8ae5e29aa 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; }; |