projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b6358e
)
hwmon: (lm75) Fix tmp112 default config
author
Abdel Alkuor
<alkuor@gmail.com>
Sat, 6 Jan 2024 03:02:53 +0000
(22:02 -0500)
committer
Guenter Roeck
<linux@roeck-us.net>
Mon, 8 Jan 2024 15:26:34 +0000
(07:26 -0800)
Set tmp112 conversion rate to 8 HZ and 12-bit mode.
Fixes: 35cd18048542 ("hwmon: (lm75) Aproximate sample times to data-sheet values")
Signed-off-by: Abdel Alkuor <alkuor@gmail.com>
Link:
https://lore.kernel.org/r/20240106030254.384963-1-alkuor@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/lm75.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/lm75.c
b/drivers/hwmon/lm75.c
index d3b0d8bf1654b6f70c6531c0ad8b6bc1ca857309..e0075071853608fd3dbab2d6c08acbf37931f15d 100644
(file)
--- a/
drivers/hwmon/lm75.c
+++ b/
drivers/hwmon/lm75.c
@@
-269,8
+269,9
@@
static const struct lm75_params device_params[] = {
.resolutions = (u8 []) {9, 10, 11, 12 },
},
[tmp112] = {
- .set_mask = 3 << 5, /* 8 samples / second */
- .clr_mask = 1 << 7, /* no one-shot mode*/
+ .config_reg_16bits = true,
+ .set_mask = 0x60C0, /* 12-bit mode, 8 samples / second */
+ .clr_mask = 1 << 15, /* no one-shot mode*/
.default_resolution = 12,
.default_sample_time = 125,
.num_sample_times = 4,