]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
iio: health/afe440x: Match LED currents to stages
authorAndrew F. Davis <afd@ti.com>
Sun, 1 May 2016 20:37:01 +0000 (15:37 -0500)
committerJonathan Cameron <jic23@kernel.org>
Wed, 4 May 2016 10:12:55 +0000 (11:12 +0100)
The current channel number for the LEDs should match the stage
number that they are active during, fix this here.

Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/health/afe4403.c
drivers/iio/health/afe4404.c

index 610631b036ecf6cbc0529033940e26b94cf719ad..059d52153e78bb527a963f2141ae86c91e75772d 100644 (file)
@@ -126,8 +126,6 @@ enum afe4403_chan_id {
        ALED1,
        LED2_ALED2,
        LED1_ALED1,
-       ILED1,
-       ILED2,
 };
 
 static const unsigned int afe4403_channel_values[] = {
@@ -140,8 +138,8 @@ static const unsigned int afe4403_channel_values[] = {
 };
 
 static const unsigned int afe4403_channel_leds[] = {
-       [ILED1] = F_ILED1,
-       [ILED2] = F_ILED2,
+       [LED2] = F_ILED2,
+       [LED1] = F_ILED1,
 };
 
 static const struct iio_chan_spec afe4403_channels[] = {
@@ -153,8 +151,8 @@ static const struct iio_chan_spec afe4403_channels[] = {
        AFE440X_INTENSITY_CHAN(LED2_ALED2, 0),
        AFE440X_INTENSITY_CHAN(LED1_ALED1, 0),
        /* LED current */
-       AFE440X_CURRENT_CHAN(ILED1),
-       AFE440X_CURRENT_CHAN(ILED2),
+       AFE440X_CURRENT_CHAN(LED2),
+       AFE440X_CURRENT_CHAN(LED1),
 };
 
 static const struct afe440x_val_table afe4403_res_table[] = {
index 69116cdd9d9205deb298856db530930dc975cf4b..aa8770b291c82c76ace8f25456b04b51d4e0d959 100644 (file)
@@ -128,9 +128,6 @@ enum afe4404_chan_id {
        ALED1,
        LED2_ALED2,
        LED1_ALED1,
-       ILED1,
-       ILED2,
-       ILED3,
 };
 
 static const unsigned int afe4404_channel_values[] = {
@@ -143,9 +140,9 @@ static const unsigned int afe4404_channel_values[] = {
 };
 
 static const unsigned int afe4404_channel_leds[] = {
-       [ILED1] = F_ILED1,
-       [ILED2] = F_ILED2,
-       [ILED3] = F_ILED3,
+       [LED2] = F_ILED2,
+       [ALED2] = F_ILED3,
+       [LED1] = F_ILED1,
 };
 
 static const unsigned int afe4404_channel_offdacs[] = {
@@ -164,9 +161,9 @@ static const struct iio_chan_spec afe4404_channels[] = {
        AFE440X_INTENSITY_CHAN(LED2_ALED2, 0),
        AFE440X_INTENSITY_CHAN(LED1_ALED1, 0),
        /* LED current */
-       AFE440X_CURRENT_CHAN(ILED1),
-       AFE440X_CURRENT_CHAN(ILED2),
-       AFE440X_CURRENT_CHAN(ILED3),
+       AFE440X_CURRENT_CHAN(LED2),
+       AFE440X_CURRENT_CHAN(ALED2),
+       AFE440X_CURRENT_CHAN(LED1),
 };
 
 static const struct afe440x_val_table afe4404_res_table[] = {