From: Vivien Didelot Date: Fri, 2 Sep 2016 18:45:32 +0000 (-0400) Subject: net: dsa: mv88e6xxx: fix module naming X-Git-Tag: Ubuntu-5.0.0-8.9~6368^2~290^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=6654d0bff91ca090feab4bb2ed94a3a009a03337;p=mirror_ubuntu-disco-kernel.git net: dsa: mv88e6xxx: fix module naming Since the mv88e6xxx.c file has been renamed, the driver compiled as a module is called chip.ko instead of mv88e6xxx.ko. Fix this. Fixes: fad09c73c270 ("net: dsa: mv88e6xxx: rename single-chip support") Signed-off-by: Vivien Didelot Signed-off-by: David S. Miller --- diff --git a/drivers/net/dsa/mv88e6xxx/Makefile b/drivers/net/dsa/mv88e6xxx/Makefile index 6e29a75ee2f7..e58b745c3c4d 100644 --- a/drivers/net/dsa/mv88e6xxx/Makefile +++ b/drivers/net/dsa/mv88e6xxx/Makefile @@ -1 +1,2 @@ -obj-$(CONFIG_NET_DSA_MV88E6XXX) += chip.o +obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx.o +mv88e6xxx-objs := chip.o