Prev: + drivers-block-floppyc-remove-copyin-copyout-and-ecall-macros.patch added to -mm tree
Next: [PATCH rt/2.6.31] [RT] kernel/sched.c: Fixup of "implicit declaration of function '_finish_arch_switch'"
From: Jonathan Cameron on 27 Jan 2010 10:00 Signed-off-by: Jonathan Cameron <jic23(a)cam.ac.uk> --- As Jean Delvare observed, this check is ineffective so lets clear it out whilst we are working on this driver. drivers/als/tsl2550.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/drivers/als/tsl2550.c b/drivers/als/tsl2550.c index b911e9c..27745a5 100644 --- a/drivers/als/tsl2550.c +++ b/drivers/als/tsl2550.c @@ -116,8 +116,6 @@ static int tsl2550_get_adc_value(struct i2c_client *client, u8 cmd) * of infrared level and visible light levels. */ -#define TSL2550_MAX_LUX 1846 - static const u8 ratio_lut[] = { 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 99, 99, @@ -187,8 +185,7 @@ static int tsl2550_calculate_lux(u8 ch0, u8 ch1) else return -EAGAIN; - /* LUX range check */ - return lux > TSL2550_MAX_LUX ? TSL2550_MAX_LUX : lux; + return lux; } /* -- 1.6.4.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |