mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 05:34:00 +08:00
iio:light:ltr501: fix variable in ltr501_init
When filling data->als_contr, the register content read into status needs
to be used, instead of the return status value of regmap_read.
Fixes: 8592a7eefa
("iio: ltr501: Add support for ltr559 chip")
Signed-off-by: Hartmut Knaack <knaack.h@gmx.de>
Acked-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
68958bd5ca
commit
5919a0839b
@ -1302,7 +1302,7 @@ static int ltr501_init(struct ltr501_data *data)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
data->als_contr = ret | data->chip_info->als_mode_active;
|
||||
data->als_contr = status | data->chip_info->als_mode_active;
|
||||
|
||||
ret = regmap_read(data->regmap, LTR501_PS_CONTR, &status);
|
||||
if (ret < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user