Skip to content

Commit 216a094

Browse files
Al2Klimovthierryreding
authored andcommitted
pwm: 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: Uwe Kleine-König <[email protected]> Signed-off-by: Thierry Reding <[email protected]>
1 parent dfd9b61 commit 216a094

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

drivers/pwm/pwm-omap-dmtimer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* with a timer counter that goes up. When it overflows it gets
1515
* reloaded with the load value and the pwm output goes up.
1616
* When counter matches with match register, the output goes down.
17-
* Reference Manual: http://www.ti.com/lit/ug/spruh73q/spruh73q.pdf
17+
* Reference Manual: https://www.ti.com/lit/ug/spruh73q/spruh73q.pdf
1818
*
1919
* Limitations:
2020
* - When PWM is stopped, timer counter gets stopped immediately. This

drivers/pwm/pwm-tiecap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* ECAP PWM driver
44
*
5-
* Copyright (C) 2012 Texas Instruments, Inc. - http://www.ti.com/
5+
* Copyright (C) 2012 Texas Instruments, Inc. - https://www.ti.com/
66
*/
77

88
#include <linux/module.h>

drivers/pwm/pwm-tiehrpwm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* EHRPWM PWM driver
44
*
5-
* Copyright (C) 2012 Texas Instruments, Inc. - http://www.ti.com/
5+
* Copyright (C) 2012 Texas Instruments, Inc. - https://www.ti.com/
66
*/
77

88
#include <linux/module.h>

0 commit comments

Comments
 (0)