mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-17 07:54:54 +08:00
75f66813e0
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> Signed-off-by: Tony Lindgren <tony@atomide.com>
35 lines
455 B
Plaintext
35 lines
455 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com/
|
|
*/
|
|
|
|
#include "dra76x.dtsi"
|
|
#include "am57-pruss.dtsi"
|
|
|
|
/ {
|
|
compatible = "ti,am5748", "ti,dra762", "ti,dra7";
|
|
};
|
|
|
|
/*
|
|
* These modules are not present on AM5748
|
|
*
|
|
* EVE1, EVE2
|
|
* ATL
|
|
* VCP1, VCP2
|
|
* MLB
|
|
* ISS
|
|
* USB3, USB4
|
|
*/
|
|
|
|
&usb3_tm {
|
|
status = "disabled";
|
|
};
|
|
|
|
&usb4_tm {
|
|
status = "disabled";
|
|
};
|
|
|
|
&atl_tm {
|
|
status = "disabled";
|
|
};
|