aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2013-07-15 03:45:00 -0400
committerJonathan Cameron <jic23@kernel.org>2013-08-03 13:40:36 -0400
commit3edc84e6054616b87a3d155fe65fa51f2eae82aa (patch)
treeaeb9061cdd0983ff638ac8cb36bfb25b3b579091 /drivers/iio
parent4fd313da0430cb122d469abaadd5990f3d8af3f7 (diff)
iio: Add a comment to about alphabetical order to Kconfigs and Makefiles
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>
Diffstat (limited to 'drivers/iio')
-rw-r--r--drivers/iio/accel/Kconfig16
-rw-r--r--drivers/iio/accel/Makefile4
-rw-r--r--drivers/iio/adc/Kconfig36
-rw-r--r--drivers/iio/adc/Makefile1
-rw-r--r--drivers/iio/amplifiers/Kconfig2
-rw-r--r--drivers/iio/amplifiers/Makefile1
-rw-r--r--drivers/iio/common/Makefile1
-rw-r--r--drivers/iio/dac/Kconfig38
-rw-r--r--drivers/iio/dac/Makefile1
-rw-r--r--drivers/iio/frequency/Kconfig1
-rw-r--r--drivers/iio/frequency/Makefile1
-rw-r--r--drivers/iio/gyro/Kconfig2
-rw-r--r--drivers/iio/gyro/Makefile1
-rw-r--r--drivers/iio/imu/Kconfig2
-rw-r--r--drivers/iio/imu/Makefile1
-rw-r--r--drivers/iio/light/Kconfig24
-rw-r--r--drivers/iio/light/Makefile3
-rw-r--r--drivers/iio/magnetometer/Kconfig2
-rw-r--r--drivers/iio/magnetometer/Makefile1
-rw-r--r--drivers/iio/pressure/Kconfig2
-rw-r--r--drivers/iio/pressure/Makefile1
-rw-r--r--drivers/iio/trigger/Kconfig2
-rw-r--r--drivers/iio/trigger/Makefile1
23 files changed, 88 insertions, 56 deletions
diff --git a/drivers/iio/accel/Kconfig b/drivers/iio/accel/Kconfig
index a00267525b66..61ca7ec0f3e7 100644
--- a/drivers/iio/accel/Kconfig
+++ b/drivers/iio/accel/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# Accelerometer drivers 2# Accelerometer drivers
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Accelerometers" 6menu "Accelerometers"
5 7
6config HID_SENSOR_ACCEL_3D 8config HID_SENSOR_ACCEL_3D
@@ -14,13 +16,6 @@ config HID_SENSOR_ACCEL_3D
14 Say yes here to build support for the HID SENSOR 16 Say yes here to build support for the HID SENSOR
15 accelerometers 3D. 17 accelerometers 3D.
16 18
17config KXSD9
18 tristate "Kionix KXSD9 Accelerometer Driver"
19 depends on SPI
20 help
21 Say yes here to build support for the Kionix KXSD9 accelerometer.
22 Currently this only supports the device via an SPI interface.
23
24config IIO_ST_ACCEL_3AXIS 19config IIO_ST_ACCEL_3AXIS
25 tristate "STMicroelectronics accelerometers 3-Axis Driver" 20 tristate "STMicroelectronics accelerometers 3-Axis Driver"
26 depends on (I2C || SPI_MASTER) && SYSFS 21 depends on (I2C || SPI_MASTER) && SYSFS
@@ -51,4 +46,11 @@ config IIO_ST_ACCEL_SPI_3AXIS
51 depends on IIO_ST_ACCEL_3AXIS 46 depends on IIO_ST_ACCEL_3AXIS
52 depends on IIO_ST_SENSORS_SPI 47 depends on IIO_ST_SENSORS_SPI
53 48
49config KXSD9
50 tristate "Kionix KXSD9 Accelerometer Driver"
51 depends on SPI
52 help
53 Say yes here to build support for the Kionix KXSD9 accelerometer.
54 Currently this only supports the device via an SPI interface.
55
54endmenu 56endmenu
diff --git a/drivers/iio/accel/Makefile b/drivers/iio/accel/Makefile
index 87d8fa264894..2f95a3dffa47 100644
--- a/drivers/iio/accel/Makefile
+++ b/drivers/iio/accel/Makefile
@@ -2,7 +2,9 @@
2# Makefile for industrial I/O accelerometer drivers 2# Makefile for industrial I/O accelerometer drivers
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_HID_SENSOR_ACCEL_3D) += hid-sensor-accel-3d.o 6obj-$(CONFIG_HID_SENSOR_ACCEL_3D) += hid-sensor-accel-3d.o
7obj-$(CONFIG_KXSD9) += kxsd9.o
6 8
7obj-$(CONFIG_IIO_ST_ACCEL_3AXIS) += st_accel.o 9obj-$(CONFIG_IIO_ST_ACCEL_3AXIS) += st_accel.o
8st_accel-y := st_accel_core.o 10st_accel-y := st_accel_core.o
@@ -10,5 +12,3 @@ st_accel-$(CONFIG_IIO_BUFFER) += st_accel_buffer.o
10 12
11obj-$(CONFIG_IIO_ST_ACCEL_I2C_3AXIS) += st_accel_i2c.o 13obj-$(CONFIG_IIO_ST_ACCEL_I2C_3AXIS) += st_accel_i2c.o
12obj-$(CONFIG_IIO_ST_ACCEL_SPI_3AXIS) += st_accel_spi.o 14obj-$(CONFIG_IIO_ST_ACCEL_SPI_3AXIS) += st_accel_spi.o
13
14obj-$(CONFIG_KXSD9) += kxsd9.o
diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig
index 2eced9d53a0b..dd6bd1bff4b7 100644
--- a/drivers/iio/adc/Kconfig
+++ b/drivers/iio/adc/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# ADC drivers 2# ADC drivers
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Analog to digital converters" 6menu "Analog to digital converters"
5 7
6config AD_SIGMA_DELTA 8config AD_SIGMA_DELTA
@@ -30,17 +32,20 @@ config AD7298
30 To compile this driver as a module, choose M here: the 32 To compile this driver as a module, choose M here: the
31 module will be called ad7298. 33 module will be called ad7298.
32 34
33config AD7923 35config AD7476
34 tristate "Analog Devices AD7923 and similar ADCs driver" 36 tristate "Analog Devices AD7476 and similar 1-channel ADCs driver"
35 depends on SPI 37 depends on SPI
36 select IIO_BUFFER 38 select IIO_BUFFER
37 select IIO_TRIGGERED_BUFFER 39 select IIO_TRIGGERED_BUFFER
38 help 40 help
39 Say yes here to build support for Analog Devices 41 Say yes here to build support for Analog Devices AD7273, AD7274, AD7276,
40 AD7904, AD7914, AD7923, AD7924 4 Channel ADCs. 42 AD7277, AD7278, AD7475, AD7476, AD7477, AD7478, AD7466, AD7467, AD7468,
43 AD7495, AD7910, AD7920, AD7920 SPI analog to digital converters (ADC).
44
45 If unsure, say N (but it's safe to say "Y").
41 46
42 To compile this driver as a module, choose M here: the 47 To compile this driver as a module, choose M here: the
43 module will be called ad7923. 48 module will be called ad7476.
44 49
45config AD7791 50config AD7791
46 tristate "Analog Devices AD7791 ADC driver" 51 tristate "Analog Devices AD7791 ADC driver"
@@ -66,33 +71,30 @@ config AD7793
66 To compile this driver as a module, choose M here: the 71 To compile this driver as a module, choose M here: the
67 module will be called AD7793. 72 module will be called AD7793.
68 73
69config AD7476 74config AD7887
70 tristate "Analog Devices AD7476 and similar 1-channel ADCs driver" 75 tristate "Analog Devices AD7887 ADC driver"
71 depends on SPI 76 depends on SPI
72 select IIO_BUFFER 77 select IIO_BUFFER
73 select IIO_TRIGGERED_BUFFER 78 select IIO_TRIGGERED_BUFFER
74 help 79 help
75 Say yes here to build support for Analog Devices AD7273, AD7274, AD7276, 80 Say yes here to build support for Analog Devices
76 AD7277, AD7278, AD7475, AD7476, AD7477, AD7478, AD7466, AD7467, AD7468, 81 AD7887 SPI analog to digital converter (ADC).
77 AD7495, AD7910, AD7920, AD7920 SPI analog to digital converters (ADC).
78
79 If unsure, say N (but it's safe to say "Y"). 82 If unsure, say N (but it's safe to say "Y").
80 83
81 To compile this driver as a module, choose M here: the 84 To compile this driver as a module, choose M here: the
82 module will be called ad7476. 85 module will be called ad7887.
83 86
84config AD7887 87config AD7923
85 tristate "Analog Devices AD7887 ADC driver" 88 tristate "Analog Devices AD7923 and similar ADCs driver"
86 depends on SPI 89 depends on SPI
87 select IIO_BUFFER 90 select IIO_BUFFER
88 select IIO_TRIGGERED_BUFFER 91 select IIO_TRIGGERED_BUFFER
89 help 92 help
90 Say yes here to build support for Analog Devices 93 Say yes here to build support for Analog Devices
91 AD7887 SPI analog to digital converter (ADC). 94 AD7904, AD7914, AD7923, AD7924 4 Channel ADCs.
92 If unsure, say N (but it's safe to say "Y").
93 95
94 To compile this driver as a module, choose M here: the 96 To compile this driver as a module, choose M here: the
95 module will be called ad7887. 97 module will be called ad7923.
96 98
97config AT91_ADC 99config AT91_ADC
98 tristate "Atmel AT91 ADC" 100 tristate "Atmel AT91 ADC"
diff --git a/drivers/iio/adc/Makefile b/drivers/iio/adc/Makefile
index d184139d1cd7..2a4324ec7f14 100644
--- a/drivers/iio/adc/Makefile
+++ b/drivers/iio/adc/Makefile
@@ -2,6 +2,7 @@
2# Makefile for IIO ADC drivers 2# Makefile for IIO ADC drivers
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_AD_SIGMA_DELTA) += ad_sigma_delta.o 6obj-$(CONFIG_AD_SIGMA_DELTA) += ad_sigma_delta.o
6obj-$(CONFIG_AD7266) += ad7266.o 7obj-$(CONFIG_AD7266) += ad7266.o
7obj-$(CONFIG_AD7298) += ad7298.o 8obj-$(CONFIG_AD7298) += ad7298.o
diff --git a/drivers/iio/amplifiers/Kconfig b/drivers/iio/amplifiers/Kconfig
index 05d707ed7d4f..e9c5f2cd9257 100644
--- a/drivers/iio/amplifiers/Kconfig
+++ b/drivers/iio/amplifiers/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# Gain Amplifiers, etc. 2# Gain Amplifiers, etc.
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Amplifiers" 6menu "Amplifiers"
5 7
6config AD8366 8config AD8366
diff --git a/drivers/iio/amplifiers/Makefile b/drivers/iio/amplifiers/Makefile
index a6ca366908e0..8da4b787898a 100644
--- a/drivers/iio/amplifiers/Makefile
+++ b/drivers/iio/amplifiers/Makefile
@@ -2,4 +2,5 @@
2# Makefile iio/amplifiers 2# Makefile iio/amplifiers
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_AD8366) += ad8366.o 6obj-$(CONFIG_AD8366) += ad8366.o
diff --git a/drivers/iio/common/Makefile b/drivers/iio/common/Makefile
index c2352beb5d97..3112df0060e9 100644
--- a/drivers/iio/common/Makefile
+++ b/drivers/iio/common/Makefile
@@ -6,5 +6,6 @@
6# instead of duplicating in each module. 6# instead of duplicating in each module.
7# 7#
8 8
9# When adding new entries keep the list in alphabetical order
9obj-y += hid-sensors/ 10obj-y += hid-sensors/
10obj-y += st_sensors/ 11obj-y += st_sensors/
diff --git a/drivers/iio/dac/Kconfig b/drivers/iio/dac/Kconfig
index b9fd4c7bfd98..3c6a78a75b78 100644
--- a/drivers/iio/dac/Kconfig
+++ b/drivers/iio/dac/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# DAC drivers 2# DAC drivers
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Digital to analog converters" 6menu "Digital to analog converters"
5 7
6config AD5064 8config AD5064
@@ -48,13 +50,6 @@ config AD5421
48 To compile this driver as module choose M here: the module will be called 50 To compile this driver as module choose M here: the module will be called
49 ad5421. 51 ad5421.
50 52
51config AD5624R_SPI
52 tristate "Analog Devices AD5624/44/64R DAC spi driver"
53 depends on SPI
54 help
55 Say yes here to build support for Analog Devices AD5624R, AD5644R and
56 AD5664R converters (DAC). This driver uses the common SPI interface.
57
58config AD5446 53config AD5446
59 tristate "Analog Devices AD5446 and similar single channel DACs driver" 54 tristate "Analog Devices AD5446 and similar single channel DACs driver"
60 depends on (SPI_MASTER && I2C!=m) || I2C 55 depends on (SPI_MASTER && I2C!=m) || I2C
@@ -87,6 +82,24 @@ config AD5504
87 To compile this driver as a module, choose M here: the 82 To compile this driver as a module, choose M here: the
88 module will be called ad5504. 83 module will be called ad5504.
89 84
85config AD5624R_SPI
86 tristate "Analog Devices AD5624/44/64R DAC spi driver"
87 depends on SPI
88 help
89 Say yes here to build support for Analog Devices AD5624R, AD5644R and
90 AD5664R converters (DAC). This driver uses the common SPI interface.
91
92config AD5686
93 tristate "Analog Devices AD5686R/AD5685R/AD5684R DAC SPI driver"
94 depends on SPI
95 help
96 Say yes here to build support for Analog Devices AD5686R, AD5685R,
97 AD5684R, AD5791 Voltage Output Digital to
98 Analog Converter.
99
100 To compile this driver as a module, choose M here: the
101 module will be called ad5686.
102
90config AD5755 103config AD5755
91 tristate "Analog Devices AD5755/AD5755-1/AD5757/AD5735/AD5737 DAC driver" 104 tristate "Analog Devices AD5755/AD5755-1/AD5757/AD5735/AD5737 DAC driver"
92 depends on SPI_MASTER 105 depends on SPI_MASTER
@@ -119,17 +132,6 @@ config AD5791
119 To compile this driver as a module, choose M here: the 132 To compile this driver as a module, choose M here: the
120 module will be called ad5791. 133 module will be called ad5791.
121 134
122config AD5686
123 tristate "Analog Devices AD5686R/AD5685R/AD5684R DAC SPI driver"
124 depends on SPI
125 help
126 Say yes here to build support for Analog Devices AD5686R, AD5685R,
127 AD5684R, AD5791 Voltage Output Digital to
128 Analog Converter.
129
130 To compile this driver as a module, choose M here: the
131 module will be called ad5686.
132
133config AD7303 135config AD7303
134 tristate "Analog Devices AD7303 DAC driver" 136 tristate "Analog Devices AD7303 DAC driver"
135 depends on SPI 137 depends on SPI
diff --git a/drivers/iio/dac/Makefile b/drivers/iio/dac/Makefile
index c8d7ab6bff01..bb84ad64463f 100644
--- a/drivers/iio/dac/Makefile
+++ b/drivers/iio/dac/Makefile
@@ -2,6 +2,7 @@
2# Makefile for industrial I/O DAC drivers 2# Makefile for industrial I/O DAC drivers
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_AD5360) += ad5360.o 6obj-$(CONFIG_AD5360) += ad5360.o
6obj-$(CONFIG_AD5380) += ad5380.o 7obj-$(CONFIG_AD5380) += ad5380.o
7obj-$(CONFIG_AD5421) += ad5421.o 8obj-$(CONFIG_AD5421) += ad5421.o
diff --git a/drivers/iio/frequency/Kconfig b/drivers/iio/frequency/Kconfig
index 6aaa33ef4544..dc5e0b72882f 100644
--- a/drivers/iio/frequency/Kconfig
+++ b/drivers/iio/frequency/Kconfig
@@ -4,6 +4,7 @@
4# Clock Distribution device drivers 4# Clock Distribution device drivers
5# Phase-Locked Loop (PLL) frequency synthesizers 5# Phase-Locked Loop (PLL) frequency synthesizers
6# 6#
7# When adding new entries keep the list in alphabetical order
7 8
8menu "Frequency Synthesizers DDS/PLL" 9menu "Frequency Synthesizers DDS/PLL"
9 10
diff --git a/drivers/iio/frequency/Makefile b/drivers/iio/frequency/Makefile
index 00d26e5d1dc2..2bca03f3e2e3 100644
--- a/drivers/iio/frequency/Makefile
+++ b/drivers/iio/frequency/Makefile
@@ -2,5 +2,6 @@
2# Makefile iio/frequency 2# Makefile iio/frequency
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_AD9523) += ad9523.o 6obj-$(CONFIG_AD9523) += ad9523.o
6obj-$(CONFIG_ADF4350) += adf4350.o 7obj-$(CONFIG_ADF4350) += adf4350.o
diff --git a/drivers/iio/gyro/Kconfig b/drivers/iio/gyro/Kconfig
index 1fdcc8451fdf..5913735bca9a 100644
--- a/drivers/iio/gyro/Kconfig
+++ b/drivers/iio/gyro/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# IIO Digital Gyroscope Sensor drivers configuration 2# IIO Digital Gyroscope Sensor drivers configuration
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Digital gyroscope sensors" 6menu "Digital gyroscope sensors"
5 7
6config ADIS16080 8config ADIS16080
diff --git a/drivers/iio/gyro/Makefile b/drivers/iio/gyro/Makefile
index e9dc034aa18b..36091d5a0f45 100644
--- a/drivers/iio/gyro/Makefile
+++ b/drivers/iio/gyro/Makefile
@@ -2,6 +2,7 @@
2# Makefile for industrial I/O gyroscope sensor drivers 2# Makefile for industrial I/O gyroscope sensor drivers
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_ADIS16080) += adis16080.o 6obj-$(CONFIG_ADIS16080) += adis16080.o
6obj-$(CONFIG_ADIS16130) += adis16130.o 7obj-$(CONFIG_ADIS16130) += adis16130.o
7obj-$(CONFIG_ADIS16136) += adis16136.o 8obj-$(CONFIG_ADIS16136) += adis16136.o
diff --git a/drivers/iio/imu/Kconfig b/drivers/iio/imu/Kconfig
index 4f40a10cb74f..663e88a1a3c1 100644
--- a/drivers/iio/imu/Kconfig
+++ b/drivers/iio/imu/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# IIO imu drivers configuration 2# IIO imu drivers configuration
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Inertial measurement units" 6menu "Inertial measurement units"
5 7
6config ADIS16400 8config ADIS16400
diff --git a/drivers/iio/imu/Makefile b/drivers/iio/imu/Makefile
index f2f56ceaed26..114d2c17cbe2 100644
--- a/drivers/iio/imu/Makefile
+++ b/drivers/iio/imu/Makefile
@@ -2,6 +2,7 @@
2# Makefile for Inertial Measurement Units 2# Makefile for Inertial Measurement Units
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5adis16400-y := adis16400_core.o 6adis16400-y := adis16400_core.o
6adis16400-$(CONFIG_IIO_BUFFER) += adis16400_buffer.o 7adis16400-$(CONFIG_IIO_BUFFER) += adis16400_buffer.o
7obj-$(CONFIG_ADIS16400) += adis16400.o 8obj-$(CONFIG_ADIS16400) += adis16400.o
diff --git a/drivers/iio/light/Kconfig b/drivers/iio/light/Kconfig
index 5ef1a396e0c9..3bd29f810e6d 100644
--- a/drivers/iio/light/Kconfig
+++ b/drivers/iio/light/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# Light sensors 2# Light sensors
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Light sensors" 6menu "Light sensors"
5 7
6config ADJD_S311 8config ADJD_S311
@@ -15,6 +17,17 @@ config ADJD_S311
15 This driver can also be built as a module. If so, the module 17 This driver can also be built as a module. If so, the module
16 will be called adjd_s311. 18 will be called adjd_s311.
17 19
20config HID_SENSOR_ALS
21 depends on HID_SENSOR_HUB
22 select IIO_BUFFER
23 select IIO_TRIGGERED_BUFFER
24 select HID_SENSOR_IIO_COMMON
25 select HID_SENSOR_IIO_TRIGGER
26 tristate "HID ALS"
27 help
28 Say yes here to build support for the HID SENSOR
29 Ambient light sensor.
30
18config SENSORS_LM3533 31config SENSORS_LM3533
19 tristate "LM3533 ambient light sensor" 32 tristate "LM3533 ambient light sensor"
20 depends on MFD_LM3533 33 depends on MFD_LM3533
@@ -52,15 +65,4 @@ config VCNL4000
52 To compile this driver as a module, choose M here: the 65 To compile this driver as a module, choose M here: the
53 module will be called vcnl4000. 66 module will be called vcnl4000.
54 67
55config HID_SENSOR_ALS
56 depends on HID_SENSOR_HUB
57 select IIO_BUFFER
58 select IIO_TRIGGERED_BUFFER
59 select HID_SENSOR_IIO_COMMON
60 select HID_SENSOR_IIO_TRIGGER
61 tristate "HID ALS"
62 help
63 Say yes here to build support for the HID SENSOR
64 Ambient light sensor.
65
66endmenu 68endmenu
diff --git a/drivers/iio/light/Makefile b/drivers/iio/light/Makefile
index 040d9c75f8e6..edef939861f0 100644
--- a/drivers/iio/light/Makefile
+++ b/drivers/iio/light/Makefile
@@ -2,8 +2,9 @@
2# Makefile for IIO Light sensors 2# Makefile for IIO Light sensors
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_ADJD_S311) += adjd_s311.o 6obj-$(CONFIG_ADJD_S311) += adjd_s311.o
7obj-$(CONFIG_HID_SENSOR_ALS) += hid-sensor-als.o
6obj-$(CONFIG_SENSORS_LM3533) += lm3533-als.o 8obj-$(CONFIG_SENSORS_LM3533) += lm3533-als.o
7obj-$(CONFIG_SENSORS_TSL2563) += tsl2563.o 9obj-$(CONFIG_SENSORS_TSL2563) += tsl2563.o
8obj-$(CONFIG_VCNL4000) += vcnl4000.o 10obj-$(CONFIG_VCNL4000) += vcnl4000.o
9obj-$(CONFIG_HID_SENSOR_ALS) += hid-sensor-als.o
diff --git a/drivers/iio/magnetometer/Kconfig b/drivers/iio/magnetometer/Kconfig
index 4d55b1b851b3..4fa923f37b97 100644
--- a/drivers/iio/magnetometer/Kconfig
+++ b/drivers/iio/magnetometer/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# Magnetometer sensors 2# Magnetometer sensors
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Magnetometer sensors" 6menu "Magnetometer sensors"
5 7
6config AK8975 8config AK8975
diff --git a/drivers/iio/magnetometer/Makefile b/drivers/iio/magnetometer/Makefile
index 7f328e37fbab..f91b1b68d392 100644
--- a/drivers/iio/magnetometer/Makefile
+++ b/drivers/iio/magnetometer/Makefile
@@ -2,6 +2,7 @@
2# Makefile for industrial I/O Magnetometer sensor drivers 2# Makefile for industrial I/O Magnetometer sensor drivers
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_AK8975) += ak8975.o 6obj-$(CONFIG_AK8975) += ak8975.o
6obj-$(CONFIG_HID_SENSOR_MAGNETOMETER_3D) += hid-sensor-magn-3d.o 7obj-$(CONFIG_HID_SENSOR_MAGNETOMETER_3D) += hid-sensor-magn-3d.o
7 8
diff --git a/drivers/iio/pressure/Kconfig b/drivers/iio/pressure/Kconfig
index 56ae8905c8e1..26fdc0bdb99d 100644
--- a/drivers/iio/pressure/Kconfig
+++ b/drivers/iio/pressure/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# Pressure drivers 2# Pressure drivers
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Pressure sensors" 6menu "Pressure sensors"
5 7
6config IIO_ST_PRESS 8config IIO_ST_PRESS
diff --git a/drivers/iio/pressure/Makefile b/drivers/iio/pressure/Makefile
index d4bb33e5c846..be71464c2752 100644
--- a/drivers/iio/pressure/Makefile
+++ b/drivers/iio/pressure/Makefile
@@ -2,6 +2,7 @@
2# Makefile for industrial I/O pressure drivers 2# Makefile for industrial I/O pressure drivers
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_IIO_ST_PRESS) += st_pressure.o 6obj-$(CONFIG_IIO_ST_PRESS) += st_pressure.o
6st_pressure-y := st_pressure_core.o 7st_pressure-y := st_pressure_core.o
7st_pressure-$(CONFIG_IIO_BUFFER) += st_pressure_buffer.o 8st_pressure-$(CONFIG_IIO_BUFFER) += st_pressure_buffer.o
diff --git a/drivers/iio/trigger/Kconfig b/drivers/iio/trigger/Kconfig
index 0a4a5164963f..79996123a71b 100644
--- a/drivers/iio/trigger/Kconfig
+++ b/drivers/iio/trigger/Kconfig
@@ -1,6 +1,8 @@
1# 1#
2# Industrial I/O standalone triggers 2# Industrial I/O standalone triggers
3# 3#
4# When adding new entries keep the list in alphabetical order
5
4menu "Triggers - standalone" 6menu "Triggers - standalone"
5 7
6config IIO_INTERRUPT_TRIGGER 8config IIO_INTERRUPT_TRIGGER
diff --git a/drivers/iio/trigger/Makefile b/drivers/iio/trigger/Makefile
index ce319a51b6af..0694daecaf22 100644
--- a/drivers/iio/trigger/Makefile
+++ b/drivers/iio/trigger/Makefile
@@ -2,5 +2,6 @@
2# Makefile for triggers not associated with iio-devices 2# Makefile for triggers not associated with iio-devices
3# 3#
4 4
5# When adding new entries keep the list in alphabetical order
5obj-$(CONFIG_IIO_INTERRUPT_TRIGGER) += iio-trig-interrupt.o 6obj-$(CONFIG_IIO_INTERRUPT_TRIGGER) += iio-trig-interrupt.o
6obj-$(CONFIG_IIO_SYSFS_TRIGGER) += iio-trig-sysfs.o 7obj-$(CONFIG_IIO_SYSFS_TRIGGER) += iio-trig-sysfs.o