mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08: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>
21 lines
616 B
Makefile
21 lines
616 B
Makefile
#
|
|
# Makefile for industrial I/O DAC drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_AD5360) += ad5360.o
|
|
obj-$(CONFIG_AD5380) += ad5380.o
|
|
obj-$(CONFIG_AD5421) += ad5421.o
|
|
obj-$(CONFIG_AD5624R_SPI) += ad5624r_spi.o
|
|
obj-$(CONFIG_AD5064) += ad5064.o
|
|
obj-$(CONFIG_AD5504) += ad5504.o
|
|
obj-$(CONFIG_AD5446) += ad5446.o
|
|
obj-$(CONFIG_AD5449) += ad5449.o
|
|
obj-$(CONFIG_AD5755) += ad5755.o
|
|
obj-$(CONFIG_AD5764) += ad5764.o
|
|
obj-$(CONFIG_AD5791) += ad5791.o
|
|
obj-$(CONFIG_AD5686) += ad5686.o
|
|
obj-$(CONFIG_AD7303) += ad7303.o
|
|
obj-$(CONFIG_MAX517) += max517.o
|
|
obj-$(CONFIG_MCP4725) += mcp4725.o
|