From 4c9ae24fe8e171b87389cae596b07423e5a0ea73 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sun, 20 Dec 2015 03:59:41 +0100 Subject: [PATCH] net: designware: Zap CONFIG_DW_AUTONEG This symbol is not used anywhere, so remove it. For spear600, remove it from the board file, since the symbol is not defined for spear600 either. Signed-off-by: Marek Vasut Cc: Dinh Nguyen Cc: Joe Hershberger --- board/spear/spear600/spear600.c | 3 --- include/configs/axs101.h | 5 ----- include/configs/sunxi-common.h | 1 - 3 files changed, 9 deletions(-) diff --git a/board/spear/spear600/spear600.c b/board/spear/spear600/spear600.c index fc0918f91d..858a9cae76 100644 --- a/board/spear/spear600/spear600.c +++ b/board/spear/spear600/spear600.c @@ -48,9 +48,6 @@ int board_eth_init(bd_t *bis) #if defined(CONFIG_ETH_DESIGNWARE) u32 interface = PHY_INTERFACE_MODE_MII; -#if defined(CONFIG_DW_AUTONEG) - interface = PHY_INTERFACE_MODE_GMII; -#endif if (designware_initialize(CONFIG_SPEAR_ETHBASE, interface) >= 0) ret++; #endif diff --git a/include/configs/axs101.h b/include/configs/axs101.h index eeb2ae6353..ee2a9c0433 100644 --- a/include/configs/axs101.h +++ b/include/configs/axs101.h @@ -98,11 +98,6 @@ #define CONFIG_MII #define CONFIG_PHY_GIGE -/* - * Ethernet configuration - */ -#define CONFIG_DW_AUTONEG - /* * Commands still not supported in Kconfig */ diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h index 46f7994222..921d912d96 100644 --- a/include/configs/sunxi-common.h +++ b/include/configs/sunxi-common.h @@ -309,7 +309,6 @@ extern int soft_i2c_gpio_scl; #endif #ifdef CONFIG_SUNXI_GMAC -#define CONFIG_DW_AUTONEG #define CONFIG_PHY_GIGE /* GMAC can use gigabit PHY */ #define CONFIG_PHY_ADDR 1 #define CONFIG_MII /* MII PHY management */ -- 2.25.1