commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
17 lines
423 B
Makefile
17 lines
423 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for multiplexer devices.
|
|
#
|
|
|
|
mux-core-objs := core.o
|
|
mux-adg792a-objs := adg792a.o
|
|
mux-adgs1408-objs := adgs1408.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_ADGS1408) += mux-adgs1408.o
|
|
obj-$(CONFIG_MUX_GPIO) += mux-gpio.o
|
|
obj-$(CONFIG_MUX_MMIO) += mux-mmio.o
|