mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
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>
14 lines
310 B
Makefile
14 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
|