diff options
| author | Marek Vasut <[email protected]> | 2023-03-19 18:03:14 +0100 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2023-04-07 14:18:51 +0200 |
| commit | 8728d4c032571a8569af14d09d18bf444c30e446 (patch) | |
| tree | d4aece48e0b8134ec18b79aba5fb320e85de36cc /include | |
| 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 <[email protected]>
Reviewed-by: Ramon Fried <[email protected]>
Acked-by: Michal Simek <[email protected]>
Tested-by: Michal Simek <[email protected]> #microblaze (MANUAL_RELOC)
Diffstat (limited to 'include')
| -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; }; |
