mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-04 03:33:58 +08:00
5856d8bd30
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> Acked-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20200719153822.59788-1-grandmaster@al2klimov.de Signed-off-by: Mark Brown <broonie@kernel.org>
23 lines
551 B
Plaintext
23 lines
551 B
Plaintext
Texas Instruments TAS6424 Quad-Channel Audio amplifier
|
|
|
|
The TAS6424 serial control bus communicates through I2C protocols.
|
|
|
|
Required properties:
|
|
- compatible: "ti,tas6424" - TAS6424
|
|
- reg: I2C slave address
|
|
- sound-dai-cells: must be equal to 0
|
|
- standby-gpios: GPIO used to shut the TAS6424 down.
|
|
- mute-gpios: GPIO used to mute all the outputs
|
|
|
|
Example:
|
|
|
|
tas6424: tas6424@6a {
|
|
compatible = "ti,tas6424";
|
|
reg = <0x6a>;
|
|
|
|
#sound-dai-cells = <0>;
|
|
};
|
|
|
|
For more product information please see the link below:
|
|
https://www.ti.com/product/TAS6424-Q1
|