mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
ad736c1a4d
Rationale: Reduces attack surface on kernel devs opening the links for MITM as HTTPS traffic is much harder to manipulate. Deterministic algorithm: For each file: If not .svg: For each line: If doesn't contain `\bxmlns\b`: For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`: If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de> Link: https://lore.kernel.org/r/20200719175512.60745-1-grandmaster@al2klimov.de Signed-off-by: Guenter Roeck <linux@roeck-us.net>
67 lines
1.6 KiB
ReStructuredText
67 lines
1.6 KiB
ReStructuredText
Kernel driver tmp421
|
|
====================
|
|
|
|
Supported chips:
|
|
|
|
* Texas Instruments TMP421
|
|
|
|
Prefix: 'tmp421'
|
|
|
|
Addresses scanned: I2C 0x2a, 0x4c, 0x4d, 0x4e and 0x4f
|
|
|
|
Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
|
|
|
|
* Texas Instruments TMP422
|
|
|
|
Prefix: 'tmp422'
|
|
|
|
Addresses scanned: I2C 0x4c, 0x4d, 0x4e and 0x4f
|
|
|
|
Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
|
|
|
|
* Texas Instruments TMP423
|
|
|
|
Prefix: 'tmp423'
|
|
|
|
Addresses scanned: I2C 0x4c and 0x4d
|
|
|
|
Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
|
|
|
|
* Texas Instruments TMP441
|
|
|
|
Prefix: 'tmp441'
|
|
|
|
Addresses scanned: I2C 0x2a, 0x4c, 0x4d, 0x4e and 0x4f
|
|
|
|
Datasheet: https://www.ti.com/product/tmp441
|
|
|
|
* Texas Instruments TMP442
|
|
|
|
Prefix: 'tmp442'
|
|
|
|
Addresses scanned: I2C 0x4c and 0x4d
|
|
|
|
Datasheet: https://www.ti.com/product/tmp442
|
|
|
|
Authors:
|
|
|
|
Andre Prendel <andre.prendel@gmx.de>
|
|
|
|
Description
|
|
-----------
|
|
|
|
This driver implements support for Texas Instruments TMP421, TMP422,
|
|
TMP423, TMP441, and TMP442 temperature sensor chips. These chips
|
|
implement one local and up to one (TMP421, TMP441), up to two (TMP422,
|
|
TMP442) or up to three (TMP423) remote sensors. Temperature is measured
|
|
in degrees Celsius. The chips are wired over I2C/SMBus and specified
|
|
over a temperature range of -40 to +125 degrees Celsius. Resolution
|
|
for both the local and remote channels is 0.0625 degree C.
|
|
|
|
The chips support only temperature measurement. The driver exports
|
|
the temperature values via the following sysfs files:
|
|
|
|
**temp[1-4]_input**
|
|
|
|
**temp[2-4]_fault**
|