]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
staging:iio: Reorder channel type strings to match the iio.h enums.
authorBryan Freed <bfreed@chromium.org>
Thu, 7 Jul 2011 19:01:54 +0000 (12:01 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 8 Jul 2011 21:11:48 +0000 (14:11 -0700)
This makes comparison between the iio_chan_type_name_spec_shared strings
and the iio_chan_type enums easier.

Signed-off-by: Bryan Freed <bfreed@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/iio/industrialio-core.c

index 8fa2be6f566fec5fbab1e445c07e75304a56fe6c..52a02af0f827373744a2e8b09e99f63a2cee5eca 100644 (file)
@@ -44,21 +44,21 @@ struct bus_type iio_bus_type = {
 EXPORT_SYMBOL(iio_bus_type);
 
 static const char * const iio_chan_type_name_spec_shared[] = {
-       [IIO_TIMESTAMP] = "timestamp",
-       [IIO_ACCEL] = "accel",
        [IIO_IN] = "in",
        [IIO_OUT] = "out",
        [IIO_CURRENT] = "current",
        [IIO_POWER] = "power",
+       [IIO_ACCEL] = "accel",
        [IIO_IN_DIFF] = "in-in",
        [IIO_GYRO] = "gyro",
-       [IIO_TEMP] = "temp",
        [IIO_MAGN] = "magn",
+       [IIO_LIGHT] = "illuminance",
+       [IIO_INTENSITY] = "intensity",
+       [IIO_TEMP] = "temp",
        [IIO_INCLI] = "incli",
        [IIO_ROT] = "rot",
-       [IIO_INTENSITY] = "intensity",
-       [IIO_LIGHT] = "illuminance",
        [IIO_ANGL] = "angl",
+       [IIO_TIMESTAMP] = "timestamp",
 };
 
 static const char * const iio_chan_type_name_spec_complex[] = {