From: Simon Glass Date: Sun, 17 Jan 2016 21:52:01 +0000 (-0700) Subject: net: Rename eth.c to eth_lecacy.c X-Git-Tag: v2025.01-rc5-pxa1908~10442^2~8 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=c4998f9634a023d498f647fa0f7fea7b08b22852;p=u-boot.git net: Rename eth.c to eth_lecacy.c Rename this file to make it clear it is for the old networking drivers and not for use with driver model. Signed-off-by: Simon Glass Reviewed-by: Bin Meng Acked-by: Joe Hershberger --- diff --git a/net/Makefile b/net/Makefile index 943de145d2..f03d608326 100644 --- a/net/Makefile +++ b/net/Makefile @@ -15,7 +15,7 @@ obj-$(CONFIG_CMD_DNS) += dns.o ifdef CONFIG_DM_ETH obj-$(CONFIG_CMD_NET) += eth-uclass.o else -obj-$(CONFIG_CMD_NET) += eth.o +obj-$(CONFIG_CMD_NET) += eth_legacy.o endif obj-$(CONFIG_CMD_NET) += eth_common.o obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o diff --git a/net/eth.c b/net/eth_legacy.c similarity index 100% rename from net/eth.c rename to net/eth_legacy.c