Staging: IIO: Add tsl2560-2 support to tsl2563 driver.
authorJonathan Cameron <jic23@cam.ac.uk>
Sun, 22 Nov 2009 16:03:25 +0000 (16:03 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 11 Dec 2009 20:23:23 +0000 (12:23 -0800)
Minimal changes to driver. Just adds the device to the id
table and adjusts the Kconfig elements appropriately.

Adding further similar chips from TAOS is complicated by their
different conversion functions (and hence left for now).

Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
Acked-by: Amit Kucheria <amit.kucheria@verdurent.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/iio/light/Kconfig
drivers/staging/iio/light/tsl2563.c

index ab541918406b110faabfdd393ffa49e84cb403f7..80cb6e590fbb6124065a65c835545f0e8bd152e7 100644 (file)
@@ -4,11 +4,11 @@
 comment "Light sensors"
 
 config SENSORS_TSL2563
-       tristate "TAOS TSL2563 ambient light sensor"
+       tristate "TAOS TSL256[0-3] ambient light sensor"
        depends on I2C
        help
-        If you say yes here you get support for the Taos TSL2563
-        ambient light sensor (found in N900).
+        If you say yes here you get support for the Taos TSL2560,
+        TSL2561, TSL2562 and TSL2563 ambient light sensors.
 
         This driver can also be built as a module.  If so, the module
         will be called tsl2563.
index 3e812b2d0cd46e6d4eaef211dcd9b697661ca8e8..78b9432c81057bcf8b019bf9835c32d2e5d875b2 100644 (file)
@@ -38,8 +38,6 @@
 #include "../iio.h"
 #include "tsl2563.h"
 
-#define DRIVER_NAME  "tsl2563"
-
 /* Use this many bits for fraction part. */
 #define ADC_FRAC_BITS          (14)
 
@@ -738,14 +736,17 @@ out:
 }
 
 static const struct i2c_device_id tsl2563_id[] = {
-       { DRIVER_NAME, 0 },
-       { },
+       { "tsl2560", 0 },
+       { "tsl2561", 1 },
+       { "tsl2562", 2 },
+       { "tsl2563", 3 },
+       {}
 };
 MODULE_DEVICE_TABLE(i2c, tsl2563_id);
 
 static struct i2c_driver tsl2563_i2c_driver = {
        .driver = {
-               .name    = DRIVER_NAME,
+               .name    = "tsl2563",
        },
        .suspend        = tsl2563_suspend,
        .resume         = tsl2563_resume,