mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 10:16:49 +07:00
3909a0713e
The two halves of this part can run largely independently. Hence
a version 4 of this patch followed that reorganized things completely.
This reverts commit d7d787d291
.
17 lines
483 B
Makefile
17 lines
483 B
Makefile
#
|
|
# Makefile for Inertial Measurement Units
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
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
|
|
|
|
obj-y += inv_mpu6050/
|