[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210106101712.6360-1-z.han@gmx.net>
Date: Wed, 6 Jan 2021 11:17:12 +0100
From: Zhi Han <z.han@....net>
To: netdev@...r.kernel.org
Cc: Zhi Han <z.han@....net>
Subject: [PATCH] Incorrect filename in drivers/net/phy/Makefile
It should be a typing error ('-' instead of '_'), as no mdio-bus.c but
just mdio_bus.c exists.
Just find it when inspecting these code. Tried to compile to test, but
failed to construct an applicable .config file for that. Maybe someone
can do that more skillfully, glad to know how.
Signed-off-by: Zhi Han <z.han@....net>
---
drivers/net/phy/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile
index a13e402074cf..0840e9055b5a 100644
--- a/drivers/net/phy/Makefile
+++ b/drivers/net/phy/Makefile
@@ -15,7 +15,7 @@ endif
ifdef CONFIG_PHYLIB
libphy-y += $(mdio-bus-y)
else
-obj-$(CONFIG_MDIO_DEVICE) += mdio-bus.o
+obj-$(CONFIG_MDIO_DEVICE) += mdio_bus.o
endif
obj-$(CONFIG_MDIO_DEVRES) += mdio_devres.o
libphy-$(CONFIG_SWPHY) += swphy.o
--
2.25.1
Powered by blists - more mailing lists