GitHub phased out support for the git:// protocol a few years ago [1]. Fix the respective URLs by using the https:// protocol instead.
[1]: https://github.blog/security/application-security/improving-git-protocol-security-github/ Signed-off-by: Roland Hieber <r...@pengutronix.de> --- Documentation/boards/efi.rst | 2 +- arch/arm/mach-omap/omap4_rom_usb.c | 2 +- drivers/mci/mci-bcm2835.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/boards/efi.rst b/Documentation/boards/efi.rst index b12433014ef1..869e5e88172f 100644 --- a/Documentation/boards/efi.rst +++ b/Documentation/boards/efi.rst @@ -292,7 +292,7 @@ HOWTOs in the net, for example on http://tianocore.sourceforge.net/wiki/Using_ED .. code-block:: sh - git clone git://github.com/tianocore/edk2.git + git clone https://github.com/tianocore/edk2.git cd edk2 git submodule update --init make -C BaseTools diff --git a/arch/arm/mach-omap/omap4_rom_usb.c b/arch/arm/mach-omap/omap4_rom_usb.c index 01c5565a68bc..500f8dfd2df0 100644 --- a/arch/arm/mach-omap/omap4_rom_usb.c +++ b/arch/arm/mach-omap/omap4_rom_usb.c @@ -1,6 +1,6 @@ /* * This code is based on: - * git://github.com/swetland/omap4boot.git + * https://github.com/swetland/omap4boot.git */ /* * Copyright (C) 2010 The Android Open Source Project diff --git a/drivers/mci/mci-bcm2835.c b/drivers/mci/mci-bcm2835.c index cd4c1b866ca1..0099e4e35753 100644 --- a/drivers/mci/mci-bcm2835.c +++ b/drivers/mci/mci-bcm2835.c @@ -4,7 +4,7 @@ * * Support for SDHCI device on bcm2835 * Based on sdhci-bcm2708.c (c) 2010 Broadcom - * Inspired by bcm2835_sdhci.c from git://github.com/gonzoua/u-boot-pi.git + * Inspired by bcm2835_sdhci.c from https://github.com/gonzoua/u-boot-pi.git * * Portions (e.g. read/write macros, concepts for back-to-back register write * timing workarounds) obviously extracted from the Linux kernel at: -- 2.39.5