mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-05 01:35:26 +07:00
3edc84e605
Keeping Makefile and Kconfig entries in alphabetical order usually works better than just appending new entries at the end, since it reduces the amount of conflicts. This patch adds a comment to the IIO Kconfig and Makefile files to document that the entries should be kept in alphabetical order. Also reorder those entries which weren't in alphabetical order yet. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
23 lines
693 B
Makefile
23 lines
693 B
Makefile
#
|
|
# Makefile for industrial I/O gyroscope sensor drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_ADIS16080) += adis16080.o
|
|
obj-$(CONFIG_ADIS16130) += adis16130.o
|
|
obj-$(CONFIG_ADIS16136) += adis16136.o
|
|
obj-$(CONFIG_ADXRS450) += adxrs450.o
|
|
|
|
obj-$(CONFIG_HID_SENSOR_GYRO_3D) += hid-sensor-gyro-3d.o
|
|
|
|
itg3200-y := itg3200_core.o
|
|
itg3200-$(CONFIG_IIO_BUFFER) += itg3200_buffer.o
|
|
obj-$(CONFIG_ITG3200) += itg3200.o
|
|
|
|
obj-$(CONFIG_IIO_ST_GYRO_3AXIS) += st_gyro.o
|
|
st_gyro-y := st_gyro_core.o
|
|
st_gyro-$(CONFIG_IIO_BUFFER) += st_gyro_buffer.o
|
|
|
|
obj-$(CONFIG_IIO_ST_GYRO_I2C_3AXIS) += st_gyro_i2c.o
|
|
obj-$(CONFIG_IIO_ST_GYRO_SPI_3AXIS) += st_gyro_spi.o
|