aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/hwmon/lm90.rst
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2021-10-31 09:34:33 -0700
committerGuenter Roeck <linux@roeck-us.net>2022-07-13 08:38:17 -0700
commit3b0982ff93aab8751f2c5df456a68abed11f84da (patch)
treeeb44f427739bfdcb5017c6f0efc5e40f9a8124f6 /Documentation/hwmon/lm90.rst
parenthwmon: (lm90) Stop using R_/W_ register prefix (diff)
downloadlinux-dev-3b0982ff93aab8751f2c5df456a68abed11f84da.tar.xz
linux-dev-3b0982ff93aab8751f2c5df456a68abed11f84da.zip
hwmon: (lm90) Improve PEC support
PEC (packet error checking) support for ADM1032 is currently only enabled if the chip was auto-detected, but not if a chip is instantiated explicitly. Always enable PEC support by introducing a chip feature flag indicating partial PEC support. Also, for consistency, disable PEC support by default to match existing functionality if the chip was not auto- detected. At the same time, introduce generic support for PEC with a separate feature flag. This will be used when support for chips with full PEC functionality is added. Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'Documentation/hwmon/lm90.rst')
-rw-r--r--Documentation/hwmon/lm90.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/hwmon/lm90.rst b/Documentation/hwmon/lm90.rst
index 05391fb4042d..f107d4a159fa 100644
--- a/Documentation/hwmon/lm90.rst
+++ b/Documentation/hwmon/lm90.rst
@@ -423,6 +423,6 @@ two transactions will typically mean twice as much delay waiting for
transaction completion, effectively doubling the register cache refresh time.
I guess reliability comes at a price, but it's quite expensive this time.
-So, as not everyone might enjoy the slowdown, PEC can be disabled through
-sysfs. Just write 0 to the "pec" file and PEC will be disabled. Write 1
-to that file to enable PEC again.
+So, as not everyone might enjoy the slowdown, PEC is disabled by default and
+can be enabled through sysfs. Just write 1 to the "pec" file and PEC will be
+enabled. Write 0 to that file to disable PEC again.