From: Tom Rini Date: Tue, 19 Jan 2021 20:35:00 +0000 (-0500) Subject: Revert "net: eth-uclass: Change uclass driver name to ethernet" X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=26e85bf77a0767939330b719261e72914e8c32df;p=u-boot.git Revert "net: eth-uclass: Change uclass driver name to ethernet" This reverts commit 1231184caacad32c180d7e2338a645f7dfe9571a. While the change is fine in theory, a number of tests need to be updated to match. Signed-off-by: Tom Rini --- diff --git a/net/eth-uclass.c b/net/eth-uclass.c index 8a22d8bf59..7c2454f5ae 100644 --- a/net/eth-uclass.c +++ b/net/eth-uclass.c @@ -597,8 +597,8 @@ static int eth_pre_remove(struct udevice *dev) return 0; } -UCLASS_DRIVER(ethernet) = { - .name = "ethernet", +UCLASS_DRIVER(eth) = { + .name = "eth", .id = UCLASS_ETH, .post_bind = eth_post_bind, .pre_unbind = eth_pre_unbind,