Commit 1b409fda authored by Alexander A. Klimov's avatar Alexander A. Klimov Committed by Tomi Valkeinen

drm: omapdrm: 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: default avatarAlexander A. Klimov <grandmaster@al2klimov.de>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200713122859.34135-1-grandmaster@al2klimov.de
parent 3945ac0e
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* Generic DSI Command Mode panel driver * Generic DSI Command Mode panel driver
* *
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com> * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
*/ */
......
...@@ -80,7 +80,7 @@ config OMAP5_DSS_HDMI ...@@ -80,7 +80,7 @@ config OMAP5_DSS_HDMI
select OMAP2_DSS_HDMI_COMMON select OMAP2_DSS_HDMI_COMMON
help help
HDMI Interface for OMAP5 and similar cores. This adds the High HDMI Interface for OMAP5 and similar cores. This adds the High
Definition Multimedia Interface. See http://www.hdmi.org/ for HDMI Definition Multimedia Interface. See https://www.hdmi.org/ for HDMI
specification. specification.
config OMAP2_DSS_SDI config OMAP2_DSS_SDI
...@@ -101,7 +101,7 @@ config OMAP2_DSS_DSI ...@@ -101,7 +101,7 @@ config OMAP2_DSS_DSI
DSI is a high speed half-duplex serial interface between the host DSI is a high speed half-duplex serial interface between the host
processor and a peripheral, such as a display or a framebuffer chip. processor and a peripheral, such as a display or a framebuffer chip.
See http://www.mipi.org/ for DSI specifications. See https://www.mipi.org/ for DSI specifications.
config OMAP2_DSS_MIN_FCK_PER_PCK config OMAP2_DSS_MIN_FCK_PER_PCK
int "Minimum FCK/PCK ratio (for scaling)" int "Minimum FCK/PCK ratio (for scaling)"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* OMAP Display Subsystem Base * OMAP Display Subsystem Base
* *
* Copyright (C) 2015-2017 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2015-2017 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
......
/* SPDX-License-Identifier: GPL-2.0-only */ /* SPDX-License-Identifier: GPL-2.0-only */
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Archit Taneja <archit@ti.com> * Author: Archit Taneja <archit@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Chandrabhanu Mahapatra <cmahapatra@ti.com> * Author: Chandrabhanu Mahapatra <cmahapatra@ti.com>
*/ */
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI driver definition for TI OMAP4 Processor. * HDMI driver definition for TI OMAP4 Processor.
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#ifndef _HDMI_H #ifndef _HDMI_H
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI interface DSS driver for TI's OMAP4 family of SoCs. * HDMI interface DSS driver for TI's OMAP4 family of SoCs.
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com/
* Authors: Yong Zhi * Authors: Yong Zhi
* Mythri pk <mythripk@ti.com> * Mythri pk <mythripk@ti.com>
*/ */
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* Based on the CEC code from hdmi_ti_4xxx_ip.c from Android. * Based on the CEC code from hdmi_ti_4xxx_ip.c from Android.
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com/
* Authors: Yong Zhi * Authors: Yong Zhi
* Mythri pk <mythripk@ti.com> * Mythri pk <mythripk@ti.com>
* *
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI TI81xx, TI38xx, TI OMAP4 etc IP driver Library * HDMI TI81xx, TI38xx, TI OMAP4 etc IP driver Library
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com/
* Authors: Yong Zhi * Authors: Yong Zhi
* Mythri pk <mythripk@ti.com> * Mythri pk <mythripk@ti.com>
*/ */
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI header definition for OMAP4 HDMI core IP * HDMI header definition for OMAP4 HDMI core IP
* *
* Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#ifndef _HDMI4_CORE_H_ #ifndef _HDMI4_CORE_H_
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI driver for OMAP5 * HDMI driver for OMAP5
* *
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com/
* *
* Authors: * Authors:
* Yong Zhi * Yong Zhi
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* OMAP5 HDMI CORE IP driver library * OMAP5 HDMI CORE IP driver library
* *
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com/
* Authors: * Authors:
* Yong Zhi * Yong Zhi
* Mythri pk * Mythri pk
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI driver definition for TI OMAP5 processors. * HDMI driver definition for TI OMAP5 processors.
* *
* Copyright (C) 2011-2012 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011-2012 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#ifndef _HDMI5_CORE_H_ #ifndef _HDMI5_CORE_H_
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI PHY * HDMI PHY
* *
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI PLL * HDMI PLL
* *
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#define DSS_SUBSYS_NAME "HDMIPLL" #define DSS_SUBSYS_NAME "HDMIPLL"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* /*
* HDMI wrapper * HDMI wrapper
* *
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#define DSS_SUBSYS_NAME "HDMIWP" #define DSS_SUBSYS_NAME "HDMIWP"
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com/
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com> * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
*/ */
......
/* SPDX-License-Identifier: GPL-2.0-only */ /* SPDX-License-Identifier: GPL-2.0-only */
/* /*
* Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2016 Texas Instruments Incorporated - https://www.ti.com/
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com> * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
* Author: Archit Taneja <archit@ti.com> * Author: Archit Taneja <archit@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#define DSS_SUBSYS_NAME "PLL" #define DSS_SUBSYS_NAME "PLL"
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com/
*/ */
#include <linux/clk.h> #include <linux/clk.h>
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob.clark@linaro.org> * Author: Rob Clark <rob.clark@linaro.org>
*/ */
......
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
* Andy Gross <andy.gross@ti.com> * Andy Gross <andy.gross@ti.com>
* *
......
/* /*
* DMM IOMMU driver support functions for TI OMAP processors. * DMM IOMMU driver support functions for TI OMAP processors.
* *
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
* Andy Gross <andy.gross@ti.com> * Andy Gross <andy.gross@ti.com>
* *
......
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
* Andy Gross <andy.gross@ti.com> * Andy Gross <andy.gross@ti.com>
* *
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
*/ */
......
/* SPDX-License-Identifier: GPL-2.0-only */ /* SPDX-License-Identifier: GPL-2.0-only */
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob@ti.com> * Author: Rob Clark <rob@ti.com>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob.clark@linaro.org> * Author: Rob Clark <rob.clark@linaro.org>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob.clark@linaro.org> * Author: Rob Clark <rob.clark@linaro.org>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob.clark@linaro.org> * Author: Rob Clark <rob.clark@linaro.org>
*/ */
......
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/
* Author: Rob Clark <rob.clark@linaro.org> * Author: Rob Clark <rob.clark@linaro.org>
*/ */
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* Lajos Molnar <molnar@ti.com> * Lajos Molnar <molnar@ti.com>
* Andy Gross <andy.gross@ti.com> * Andy Gross <andy.gross@ti.com>
* *
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
* *
* This package is free software; you can redistribute it and/or modify * This package is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as * it under the terms of the GNU General Public License version 2 as
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment