diff options
author | Vivien Didelot | 2016-09-02 14:45:32 -0400 |
---|---|---|
committer | David S. Miller | 2016-09-06 12:58:13 -0700 |
commit | 6654d0bff91ca090feab4bb2ed94a3a009a03337 (patch) | |
tree | 04eb65db80ea33bc8274fff8aa76fbe46265abae /drivers/net/dsa/mv88e6xxx/Makefile | |
parent | 60175ccdf46ac5076725cb3e66f6bc2e2766ad2b (diff) |
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 <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/mv88e6xxx/Makefile')
-rw-r--r-- | drivers/net/dsa/mv88e6xxx/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 |