projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b263f81
)
iio: light: tsl2772: fix reading proximity-diodes from device tree
author
Brian Masney
<bmasney@redhat.com>
Tue, 4 Apr 2023 01:14:55 +0000
(21:14 -0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 26 Apr 2023 12:28:38 +0000
(14:28 +0200)
commit
b1cb00d51e361cf5af93649917d9790e1623647e
upstream.
tsl2772_read_prox_diodes() will correctly parse the properties from
device tree to determine which proximity diode(s) to read from, however
it didn't actually set this value on the struct tsl2772_settings. Let's
go ahead and fix that.
Reported-by: Tom Rix <trix@redhat.com>
Link:
https://lore.kernel.org/lkml/20230327120823.1369700-1-trix@redhat.com/
Fixes: 94cd1113aaa0 ("iio: tsl2772: add support for reading proximity led settings from device tree")
Signed-off-by: Brian Masney <bmasney@redhat.com>
Link:
https://lore.kernel.org/r/20230404011455.339454-1-bmasney@redhat.com
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/iio/light/tsl2772.c
patch
|
blob
|
history
diff --git
a/drivers/iio/light/tsl2772.c
b/drivers/iio/light/tsl2772.c
index dd9051f1cc1a0a957d470ebc33630cf718100819..13a6c3d078616e6192f9f00be08dc99ae685bd8d 100644
(file)
--- a/
drivers/iio/light/tsl2772.c
+++ b/
drivers/iio/light/tsl2772.c
@@
-601,6
+601,7
@@
static int tsl2772_read_prox_diodes(struct tsl2772_chip *chip)
return -EINVAL;
}
}
+ chip->settings.prox_diode = prox_diode_mask;
return 0;
}