Skip to content

Commit a6df49f

Browse files
Al2KlimovSantoshShilimkar
authored andcommitted
firmware: ti_sci: Replace HTTP links with HTTPS ones
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 <[email protected]> Acked-by: Rob Herring <[email protected]> Signed-off-by: Santosh Shilimkar <[email protected]>
1 parent 2ea17d5 commit a6df49f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Required Properties:
5555
corresponds to a range of host irqs.
5656

5757
For more details on TISCI IRQ resource management refer:
58-
http://downloads.ti.com/tisci/esd/latest/2_tisci_msgs/rm/rm_irq.html
58+
https://downloads.ti.com/tisci/esd/latest/2_tisci_msgs/rm/rm_irq.html
5959

6060
Example:
6161
--------

drivers/firmware/ti_sci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Texas Instruments System Control Interface Protocol Driver
44
*
5-
* Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
5+
* Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
66
* Nishanth Menon
77
*/
88

drivers/firmware/ti_sci.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* The system works in a message response protocol
77
* See: http://processors.wiki.ti.com/index.php/TISCI for details
88
*
9-
* Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
9+
* Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
1010
*/
1111

1212
#ifndef __TI_SCI_H

drivers/irqchip/irq-ti-sci-inta.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Texas Instruments' K3 Interrupt Aggregator irqchip driver
44
*
5-
* Copyright (C) 2018-2019 Texas Instruments Incorporated - http://www.ti.com/
5+
* Copyright (C) 2018-2019 Texas Instruments Incorporated - https://www.ti.com/
66
* Lokesh Vutla <[email protected]>
77
*/
88

drivers/irqchip/irq-ti-sci-intr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Texas Instruments' K3 Interrupt Router irqchip driver
44
*
5-
* Copyright (C) 2018-2019 Texas Instruments Incorporated - http://www.ti.com/
5+
* Copyright (C) 2018-2019 Texas Instruments Incorporated - https://www.ti.com/
66
* Lokesh Vutla <[email protected]>
77
*/
88

drivers/reset/reset-ti-sci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Texas Instrument's System Control Interface (TI-SCI) reset driver
33
*
4-
* Copyright (C) 2015-2017 Texas Instruments Incorporated - http://www.ti.com/
4+
* Copyright (C) 2015-2017 Texas Instruments Incorporated - https://www.ti.com/
55
* Andrew F. Davis <[email protected]>
66
*
77
* This program is free software; you can redistribute it and/or modify

include/linux/soc/ti/ti_sci_inta_msi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Texas Instruments' K3 TI SCI INTA MSI helper
44
*
5-
* Copyright (C) 2018-2019 Texas Instruments Incorporated - http://www.ti.com/
5+
* Copyright (C) 2018-2019 Texas Instruments Incorporated - https://www.ti.com/
66
* Lokesh Vutla <[email protected]>
77
*/
88

include/linux/soc/ti/ti_sci_protocol.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Texas Instruments System Control Interface Protocol
44
*
5-
* Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
5+
* Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
66
* Nishanth Menon
77
*/
88

0 commit comments

Comments
 (0)