diff options
author | Jonathan Cameron <jic23@cam.ac.uk> | 2009-11-22 11:03:25 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-11 15:23:23 -0500 |
commit | dbd5d239e4b24c17ec50bef38aec9bba0e54e1ee (patch) | |
tree | cdb9b532663a4a1814aadfc82632e768e53f9dfc /drivers/staging | |
parent | eaacdd9b31b9dd6b342b569711b69e47dbba19b2 (diff) |
Staging: IIO: Add tsl2560-2 support to tsl2563 driver.
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/iio/light/Kconfig | 6 | ||||
-rw-r--r-- | drivers/staging/iio/light/tsl2563.c | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/drivers/staging/iio/light/Kconfig b/drivers/staging/iio/light/Kconfig index ab541918406b..80cb6e590fbb 100644 --- a/drivers/staging/iio/light/Kconfig +++ b/drivers/staging/iio/light/Kconfig | |||
@@ -4,11 +4,11 @@ | |||
4 | comment "Light sensors" | 4 | comment "Light sensors" |
5 | 5 | ||
6 | config SENSORS_TSL2563 | 6 | config SENSORS_TSL2563 |
7 | tristate "TAOS TSL2563 ambient light sensor" | 7 | tristate "TAOS TSL256[0-3] ambient light sensor" |
8 | depends on I2C | 8 | depends on I2C |
9 | help | 9 | help |
10 | If you say yes here you get support for the Taos TSL2563 | 10 | If you say yes here you get support for the Taos TSL2560, |
11 | ambient light sensor (found in N900). | 11 | TSL2561, TSL2562 and TSL2563 ambient light sensors. |
12 | 12 | ||
13 | This driver can also be built as a module. If so, the module | 13 | This driver can also be built as a module. If so, the module |
14 | will be called tsl2563. | 14 | will be called tsl2563. |
diff --git a/drivers/staging/iio/light/tsl2563.c b/drivers/staging/iio/light/tsl2563.c index 3e812b2d0cd4..78b9432c8105 100644 --- a/drivers/staging/iio/light/tsl2563.c +++ b/drivers/staging/iio/light/tsl2563.c | |||
@@ -38,8 +38,6 @@ | |||
38 | #include "../iio.h" | 38 | #include "../iio.h" |
39 | #include "tsl2563.h" | 39 | #include "tsl2563.h" |
40 | 40 | ||
41 | #define DRIVER_NAME "tsl2563" | ||
42 | |||
43 | /* Use this many bits for fraction part. */ | 41 | /* Use this many bits for fraction part. */ |
44 | #define ADC_FRAC_BITS (14) | 42 | #define ADC_FRAC_BITS (14) |
45 | 43 | ||
@@ -738,14 +736,17 @@ out: | |||
738 | } | 736 | } |
739 | 737 | ||
740 | static const struct i2c_device_id tsl2563_id[] = { | 738 | static const struct i2c_device_id tsl2563_id[] = { |
741 | { DRIVER_NAME, 0 }, | 739 | { "tsl2560", 0 }, |
742 | { }, | 740 | { "tsl2561", 1 }, |
741 | { "tsl2562", 2 }, | ||
742 | { "tsl2563", 3 }, | ||
743 | {} | ||
743 | }; | 744 | }; |
744 | MODULE_DEVICE_TABLE(i2c, tsl2563_id); | 745 | MODULE_DEVICE_TABLE(i2c, tsl2563_id); |
745 | 746 | ||
746 | static struct i2c_driver tsl2563_i2c_driver = { | 747 | static struct i2c_driver tsl2563_i2c_driver = { |
747 | .driver = { | 748 | .driver = { |
748 | .name = DRIVER_NAME, | 749 | .name = "tsl2563", |
749 | }, | 750 | }, |
750 | .suspend = tsl2563_suspend, | 751 | .suspend = tsl2563_suspend, |
751 | .resume = tsl2563_resume, | 752 | .resume = tsl2563_resume, |