mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
d6b09bd85d
This adis16400 driver is in pretty good shape now, so move it out of staging. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
14 lines
398 B
Makefile
14 lines
398 B
Makefile
#
|
|
# Makefile for Inertial Measurement Units
|
|
#
|
|
|
|
adis16400-y := adis16400_core.o
|
|
adis16400-$(CONFIG_IIO_BUFFER) += adis16400_buffer.o
|
|
obj-$(CONFIG_ADIS16400) += adis16400.o
|
|
obj-$(CONFIG_ADIS16480) += adis16480.o
|
|
|
|
adis_lib-y += adis.o
|
|
adis_lib-$(CONFIG_IIO_ADIS_LIB_BUFFER) += adis_trigger.o
|
|
adis_lib-$(CONFIG_IIO_ADIS_LIB_BUFFER) += adis_buffer.o
|
|
obj-$(CONFIG_IIO_ADIS_LIB) += adis_lib.o
|