Browse Source

mux: zap mux- prefix from the source files

Preserve the module names with Makefile additions.

Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Peter Rosin 8 years ago
parent
commit
8f3addf1b4
5 changed files with 5 additions and 0 deletions
  1. 5 0
      drivers/mux/Makefile
  2. 0 0
      drivers/mux/adg792a.c
  3. 0 0
      drivers/mux/core.c
  4. 0 0
      drivers/mux/gpio.c
  5. 0 0
      drivers/mux/mmio.c

+ 5 - 0
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

+ 0 - 0
drivers/mux/mux-adg792a.c → drivers/mux/adg792a.c


+ 0 - 0
drivers/mux/mux-core.c → drivers/mux/core.c


+ 0 - 0
drivers/mux/mux-gpio.c → drivers/mux/gpio.c


+ 0 - 0
drivers/mux/mux-mmio.c → drivers/mux/mmio.c