mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
0edff03d44
Remove all free-text license texts. This is done on a quest to remove the 700+ different ways that files in the kernel describe the GPL license text. No copyright headers or other non-license-description text was removed. Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com> Acked-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Peter Rosin <peda@axentia.se> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15 lines
345 B
Makefile
15 lines
345 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# 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
|