From: Peter Rosin Date: Tue, 22 Aug 2017 06:27:08 +0000 (+0200) Subject: mux: zap mux- prefix from the source files X-Git-Tag: v4.14-rc1~146^2~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f3addf1b451784104ba3593d80702b4815d5a94;p=platform%2Fkernel%2Flinux-rpi.git mux: zap mux- prefix from the source files Preserve the module names with Makefile additions. Signed-off-by: Peter Rosin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/mux/Makefile b/drivers/mux/Makefile index 6bac5b0..0e1e597 100644 --- a/drivers/mux/Makefile +++ b/drivers/mux/Makefile @@ -2,6 +2,11 @@ # Makefile for multiplexer devices. # +mux-core-objs := core.o +mux-adg792a-objs := adg792a.o +mux-gpio-objs := gpio.o +mux-mmio-objs := mmio.o + obj-$(CONFIG_MULTIPLEXER) += mux-core.o obj-$(CONFIG_MUX_ADG792A) += mux-adg792a.o obj-$(CONFIG_MUX_GPIO) += mux-gpio.o diff --git a/drivers/mux/mux-adg792a.c b/drivers/mux/adg792a.c similarity index 100% rename from drivers/mux/mux-adg792a.c rename to drivers/mux/adg792a.c diff --git a/drivers/mux/mux-core.c b/drivers/mux/core.c similarity index 100% rename from drivers/mux/mux-core.c rename to drivers/mux/core.c diff --git a/drivers/mux/mux-gpio.c b/drivers/mux/gpio.c similarity index 100% rename from drivers/mux/mux-gpio.c rename to drivers/mux/gpio.c diff --git a/drivers/mux/mux-mmio.c b/drivers/mux/mmio.c similarity index 100% rename from drivers/mux/mux-mmio.c rename to drivers/mux/mmio.c