mirror of
https://github.com/torvalds/linux.git
synced 2026-05-03 14:02:43 -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>
22 lines
387 B
Plaintext
22 lines
387 B
Plaintext
* Avago APDS9300 ambient light sensor
|
|
|
|
https://www.avagotech.com/docs/AV02-1077EN
|
|
|
|
Required properties:
|
|
|
|
- compatible : should be "avago,apds9300"
|
|
- reg : the I2C address of the sensor
|
|
|
|
Optional properties:
|
|
|
|
- interrupts : interrupt mapping for GPIO IRQ
|
|
|
|
Example:
|
|
|
|
apds9300@39 {
|
|
compatible = "avago,apds9300";
|
|
reg = <0x39>;
|
|
interrupt-parent = <&gpio2>;
|
|
interrupts = <29 8>;
|
|
};
|