diff options
author | Tom Rini <trini@konsulko.com> | 2022-08-02 07:33:47 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-20 21:18:15 -0400 |
commit | 94633c36f9eb34e721faf38270b3dddc8f1cdaed (patch) | |
tree | 1f251a352b0e3d025eeacacbb8c6f23c19edf487 /Makefile | |
parent | 4b8dd4c5a2cbd2677af0c9fec4a00a74cad9423b (diff) | |
download | u-boot-94633c36f9eb34e721faf38270b3dddc8f1cdaed.tar.gz u-boot-94633c36f9eb34e721faf38270b3dddc8f1cdaed.tar.bz2 u-boot-94633c36f9eb34e721faf38270b3dddc8f1cdaed.zip |
net: Make DM_ETH be selected by NETDEVICE
The deadline for DM_ETH migration passed 2 years ago. Now that
platforms which cannot be migrated have been either removed or had
drivers disabled, and platforms that needed minor help to migrate have
been forcefully migrated, we can complete the migration.
This entails select'ing DM_ETH under NETDEVICES, and then removing now
extraneous depends on lines. In a few places, we can now either remove
options or just simplify later dependencies.
Cc: Ramon Fried <rfried.dev@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Acked-by: Ramon Fried <rfried.dev@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1151,7 +1151,6 @@ ifneq ($(CONFIG_DM),y) endif $(call deprecated,CONFIG_WDT,DM watchdog,v2019.10,\ $(CONFIG_WATCHDOG)$(CONFIG_HW_WATCHDOG)) - $(call deprecated,CONFIG_DM_ETH,Ethernet drivers,v2020.07,$(CONFIG_NET)) $(call deprecated,CONFIG_DM_I2C,I2C drivers,v2022.04,$(CONFIG_SYS_I2C_LEGACY)) $(call deprecated,CONFIG_DM_KEYBOARD,Keyboard drivers,v2022.10,$(CONFIG_KEYBOARD)) @# CONFIG_SYS_TIMER_RATE has brackets in it for some boards which |