From: Simon Glass Date: Sun, 10 May 2020 20:16:52 +0000 (-0600) Subject: bdinfo: net: ppc: Drop prints for CONFIG_HAS_ETHn X-Git-Tag: v2020.10~139^2~7^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c89c4c8562754fe1540938ec0ddbb41e7d130a8;p=platform%2Fkernel%2Fu-boot.git bdinfo: net: ppc: Drop prints for CONFIG_HAS_ETHn These config options have not been migrated to Kconfig. This should be handled using driver model, iterating over the available Ethernet devices. For now, remove the code. Signed-off-by: Simon Glass Reviewed-by: Bin Meng Reviewed-by: Stefan Roese --- diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index a7bbd07..1a08e14 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -88,21 +88,6 @@ static void print_eth_ip_addr(void) { #if defined(CONFIG_CMD_NET) print_eth(0); -#if defined(CONFIG_HAS_ETH1) - print_eth(1); -#endif -#if defined(CONFIG_HAS_ETH2) - print_eth(2); -#endif -#if defined(CONFIG_HAS_ETH3) - print_eth(3); -#endif -#if defined(CONFIG_HAS_ETH4) - print_eth(4); -#endif -#if defined(CONFIG_HAS_ETH5) - print_eth(5); -#endif printf("IP addr = %s\n", env_get("ipaddr")); #endif }