8f3addf1b4
Preserve the module names with Makefile additions. Signed-off-by: Peter Rosin <peda@axentia.se> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
310 B
Makefile
13 lines
310 B
Makefile
#
|
|
# 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
|
|
obj-$(CONFIG_MUX_MMIO) += mux-mmio.o
|