From: Bin Meng Date: Tue, 3 Nov 2015 12:24:40 +0000 (-0800) Subject: fdt: Deprecate "usbethaddr" usage in fdt_fixup_ethernet() X-Git-Tag: v2016.03-rc1~336^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52d825cc7b9d50f286cdbd026733bb15e81d3c66;p=platform%2Fkernel%2Fu-boot.git fdt: Deprecate "usbethaddr" usage in fdt_fixup_ethernet() In fdt_fixup_ethernet() only "usbethaddr" is handled to fix up the first usb ethernet port MAC address. Other additional usb ethernet ports are ignored as there is no logic to handle "usbeth%daddr". It is suggested we should use "ethaddr" for all ethernet devices. Hence deprecate "usbethaddr" usage in fdt_fixup_ethernet(). This actually reverts commit b1f49ab8c7bad60426b30c134ae065ef77d2dfc1 "ARM: fdt support: Add usbethaddr as an acceptable MAC". Signed-off-by: Bin Meng Acked-by: Joe Hershberger Reviewed-by: Tom Rini On OMAP4 Panda (+ v4.3 kernel) Tested-by: Tom Rini --- diff --git a/common/fdt_support.c b/common/fdt_support.c index 66464db..ccad16f 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -491,18 +491,8 @@ void fdt_fixup_ethernet(void *fdt) if (node < 0) return; - if (!getenv("ethaddr")) { - if (getenv("usbethaddr")) { - strcpy(mac, "usbethaddr"); - } else { - debug("No ethernet MAC Address defined\n"); - return; - } - } else { - strcpy(mac, "ethaddr"); - } - i = 0; + strcpy(mac, "ethaddr"); while ((tmp = getenv(mac)) != NULL) { sprintf(enet, "ethernet%d", i); path = fdt_getprop(fdt, node, enet, NULL);