mirror of
https://github.com/torvalds/linux.git
synced 2026-05-03 05:52:38 -04:00
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 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>
Reviewed-by: Matt Ranostay <matt.ranostay@konsulko.com> #for Matt's drivers
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
16 lines
287 B
Plaintext
16 lines
287 B
Plaintext
STMicro VL6180 - ALS, range and proximity sensor
|
|
|
|
Link to datasheet: https://www.st.com/resource/en/datasheet/vl6180x.pdf
|
|
|
|
Required properties:
|
|
|
|
-compatible: should be "st,vl6180"
|
|
-reg: the I2C address of the sensor
|
|
|
|
Example:
|
|
|
|
vl6180@29 {
|
|
compatible = "st,vl6180";
|
|
reg = <0x29>;
|
|
};
|