lm90.c (3b0982ff93aab8751f2c5df456a68abed11f84da) | lm90.c (425f5b5d15c2dfed7193ad2517a082bc99964722) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware 4 * monitoring 5 * Copyright (C) 2003-2010 Jean Delvare <jdelvare@suse.de> 6 * 7 * Based on the lm83 driver. The LM90 is a sensor chip made by National 8 * Semiconductor. It reports up to two temperatures (its own plus up to --- 342 unchanged lines hidden (view full) --- 351 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT 352 | LM90_HAVE_PARTIAL_PEC, 353 .alert_alarms = 0x7c, 354 .max_convrate = 10, 355 }, 356 [adt7461] = { 357 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT 358 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware 4 * monitoring 5 * Copyright (C) 2003-2010 Jean Delvare <jdelvare@suse.de> 6 * 7 * Based on the lm83 driver. The LM90 is a sensor chip made by National 8 * Semiconductor. It reports up to two temperatures (its own plus up to --- 342 unchanged lines hidden (view full) --- 351 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT 352 | LM90_HAVE_PARTIAL_PEC, 353 .alert_alarms = 0x7c, 354 .max_convrate = 10, 355 }, 356 [adt7461] = { 357 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT 358 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP |
359 | LM90_HAVE_CRIT, | 359 | LM90_HAVE_CRIT | LM90_HAVE_PARTIAL_PEC, |
360 .alert_alarms = 0x7c, 361 .max_convrate = 10, 362 }, 363 [g781] = { 364 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT 365 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT, 366 .alert_alarms = 0x7c, 367 .max_convrate = 7, --- 1818 unchanged lines hidden --- | 360 .alert_alarms = 0x7c, 361 .max_convrate = 10, 362 }, 363 [g781] = { 364 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT 365 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT, 366 .alert_alarms = 0x7c, 367 .max_convrate = 7, --- 1818 unchanged lines hidden --- |