From 6b5bc77c9b22c398262ff3f4dae3e14904c57366 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Sun, 10 May 2020 16:41:01 +0200 Subject: treewide: Remove "this file is part of" lines Stefan thinks they don't add value. Command used: sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool) The exceptions are for: - crossgcc (patch file) - gcov (imported from gcc) - elf.h (imported from GNU's libc) - nvramtool (more complicated header) The removed lines are: - fmt.Fprintln(f, "/* This file is part of the coreboot project. */") -# This file is part of a set of unofficial pre-commit hooks available -/* This file is part of coreboot */ -# This file is part of msrtool. -/* This file is part of msrtool. */ - * This file is part of ncurses, designed to be appended after curses.h.in -/* This file is part of pgtblgen. */ - * This file is part of the coreboot project. - /* This file is part of the coreboot project. */ -# This file is part of the coreboot project. -# This file is part of the coreboot project. -## This file is part of the coreboot project. --- This file is part of the coreboot project. -/* This file is part of the coreboot project */ -/* This file is part of the coreboot project. */ -;## This file is part of the coreboot project. -# This file is part of the coreboot project. It originated in the - * This file is part of the coreinfo project. -## This file is part of the coreinfo project. - * This file is part of the depthcharge project. -/* This file is part of the depthcharge project. */ -/* This file is part of the ectool project. */ - * This file is part of the GNU C Library. - * This file is part of the libpayload project. -## This file is part of the libpayload project. -/* This file is part of the Linux kernel. */ -## This file is part of the superiotool project. -/* This file is part of the superiotool project */ -/* This file is part of uio_usbdebug */ Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9 Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes Tested-by: build bot (Jenkins) --- src/device/Kconfig | 1 - src/device/azalia_device.c | 1 - src/device/cardbus_device.c | 1 - src/device/cpu_device.c | 1 - src/device/device.c | 1 - src/device/device_const.c | 1 - src/device/device_util.c | 1 - src/device/dram/ddr2.c | 1 - src/device/dram/ddr3.c | 1 - src/device/dram/ddr4.c | 1 - src/device/dram/ddr_common.c | 1 - src/device/hypertransport.c | 1 - src/device/i2c.c | 1 - src/device/i2c_bus.c | 1 - src/device/mmio.c | 1 - src/device/oprom/Makefile.inc | 1 - src/device/oprom/include/io.h | 1 - src/device/oprom/realmode/Makefile.inc | 1 - src/device/oprom/realmode/x86.c | 1 - src/device/oprom/realmode/x86.h | 1 - src/device/oprom/realmode/x86_asm.S | 1 - src/device/oprom/realmode/x86_interrupts.c | 1 - src/device/pci_class.c | 1 - src/device/pci_device.c | 1 - src/device/pci_early.c | 1 - src/device/pci_ops.c | 1 - src/device/pci_rom.c | 1 - src/device/pciexp_device.c | 1 - src/device/pcix_device.c | 1 - src/device/pnp_device.c | 1 - src/device/root_device.c | 1 - src/device/smbus_ops.c | 1 - src/device/software_i2c.c | 1 - 33 files changed, 33 deletions(-) (limited to 'src/device') diff --git a/src/device/Kconfig b/src/device/Kconfig index 97eae506a3..6096a38b6f 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -1,5 +1,4 @@ ## -## This file is part of the coreboot project. ## ## SPDX-License-Identifier: GPL-2.0-only diff --git a/src/device/azalia_device.c b/src/device/azalia_device.c index 152bde4fd4..dca4e0a110 100644 --- a/src/device/azalia_device.c +++ b/src/device/azalia_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/cardbus_device.c b/src/device/cardbus_device.c index b3dc669892..cbe0c724fb 100644 --- a/src/device/cardbus_device.c +++ b/src/device/cardbus_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/cpu_device.c b/src/device/cpu_device.c index 3ab4254874..4ca5f97670 100644 --- a/src/device/cpu_device.c +++ b/src/device/cpu_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/device.c b/src/device/device.c index a5d223b1c0..e4b5f12023 100644 --- a/src/device/device.c +++ b/src/device/device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ /* * Originally based on the Linux kernel (arch/i386/kernel/pci-pc.c). diff --git a/src/device/device_const.c b/src/device/device_const.c index add253b511..65ec15729a 100644 --- a/src/device/device_const.c +++ b/src/device/device_const.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/device_util.c b/src/device/device_util.c index aa2f06a332..5aa53c1daf 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/dram/ddr2.c b/src/device/dram/ddr2.c index db108d792a..c6d6442da8 100644 --- a/src/device/dram/ddr2.c +++ b/src/device/dram/ddr2.c @@ -1,4 +1,3 @@ -/* This file is part of the coreboot project. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ /** diff --git a/src/device/dram/ddr3.c b/src/device/dram/ddr3.c index a2fc617799..3c433a931e 100644 --- a/src/device/dram/ddr3.c +++ b/src/device/dram/ddr3.c @@ -1,4 +1,3 @@ -/* This file is part of the coreboot project. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ /** diff --git a/src/device/dram/ddr4.c b/src/device/dram/ddr4.c index b641711df1..429a9d271a 100644 --- a/src/device/dram/ddr4.c +++ b/src/device/dram/ddr4.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/dram/ddr_common.c b/src/device/dram/ddr_common.c index b5a5803946..c75cba7128 100644 --- a/src/device/dram/ddr_common.c +++ b/src/device/dram/ddr_common.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/hypertransport.c b/src/device/hypertransport.c index 7815415a21..a9f922fdf3 100644 --- a/src/device/hypertransport.c +++ b/src/device/hypertransport.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/i2c.c b/src/device/i2c.c index dbb355470f..e05270f685 100644 --- a/src/device/i2c.c +++ b/src/device/i2c.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/i2c_bus.c b/src/device/i2c_bus.c index 58c3d7349a..a65cdada89 100644 --- a/src/device/i2c_bus.c +++ b/src/device/i2c_bus.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/mmio.c b/src/device/mmio.c index ce0514256b..8b08b9b2a4 100644 --- a/src/device/mmio.c +++ b/src/device/mmio.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/oprom/Makefile.inc b/src/device/oprom/Makefile.inc index 63512d0d61..b00b983cf8 100644 --- a/src/device/oprom/Makefile.inc +++ b/src/device/oprom/Makefile.inc @@ -1,5 +1,4 @@ ## -## This file is part of the coreboot project. ## ## SPDX-License-Identifier: GPL-2.0-only diff --git a/src/device/oprom/include/io.h b/src/device/oprom/include/io.h index 1d16e39fa9..bcdde48c11 100644 --- a/src/device/oprom/include/io.h +++ b/src/device/oprom/include/io.h @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #ifndef __OPROM_IO_H__ #define __OPROM_IO_H__ diff --git a/src/device/oprom/realmode/Makefile.inc b/src/device/oprom/realmode/Makefile.inc index e8aeac3533..d1bf9e6efd 100644 --- a/src/device/oprom/realmode/Makefile.inc +++ b/src/device/oprom/realmode/Makefile.inc @@ -1,5 +1,4 @@ ## -## This file is part of the coreboot project. ## ## SPDX-License-Identifier: GPL-2.0-only diff --git a/src/device/oprom/realmode/x86.c b/src/device/oprom/realmode/x86.c index afc0ee4239..5215934ed5 100644 --- a/src/device/oprom/realmode/x86.c +++ b/src/device/oprom/realmode/x86.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/oprom/realmode/x86.h b/src/device/oprom/realmode/x86.h index 46728f316c..36a28af100 100644 --- a/src/device/oprom/realmode/x86.h +++ b/src/device/oprom/realmode/x86.h @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #ifndef __DEVICE_OPROM_REALMODE_X86_H__ #define __DEVICE_OPROM_REALMODE_X86_H__ diff --git a/src/device/oprom/realmode/x86_asm.S b/src/device/oprom/realmode/x86_asm.S index 923a60983b..ea030dfaa5 100644 --- a/src/device/oprom/realmode/x86_asm.S +++ b/src/device/oprom/realmode/x86_asm.S @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #define REALMODE_BASE 0x600 #define RELOCATED(x) (x - __realmode_code + REALMODE_BASE) diff --git a/src/device/oprom/realmode/x86_interrupts.c b/src/device/oprom/realmode/x86_interrupts.c index d08718378c..945052be88 100644 --- a/src/device/oprom/realmode/x86_interrupts.c +++ b/src/device/oprom/realmode/x86_interrupts.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/pci_class.c b/src/device/pci_class.c index b7f1c4e362..460d85391b 100644 --- a/src/device/pci_class.c +++ b/src/device/pci_class.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/pci_device.c b/src/device/pci_device.c index 6fce761a72..9036f53f3b 100644 --- a/src/device/pci_device.c +++ b/src/device/pci_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ /* * Originally based on the Linux kernel (drivers/pci/pci.c). diff --git a/src/device/pci_early.c b/src/device/pci_early.c index 4904c68bb7..3a4d2e020c 100644 --- a/src/device/pci_early.c +++ b/src/device/pci_early.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/pci_ops.c b/src/device/pci_ops.c index d47a3eb505..90f45bf21a 100644 --- a/src/device/pci_ops.c +++ b/src/device/pci_ops.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/pci_rom.c b/src/device/pci_rom.c index 08bfec8178..bb616d91f1 100644 --- a/src/device/pci_rom.c +++ b/src/device/pci_rom.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/pciexp_device.c b/src/device/pciexp_device.c index 07d559ac11..1189207539 100644 --- a/src/device/pciexp_device.c +++ b/src/device/pciexp_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/pcix_device.c b/src/device/pcix_device.c index 88f58b4995..8bf5225703 100644 --- a/src/device/pcix_device.c +++ b/src/device/pcix_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/pnp_device.c b/src/device/pnp_device.c index 15f166d6b7..cd7adf32bc 100644 --- a/src/device/pnp_device.c +++ b/src/device/pnp_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/root_device.c b/src/device/root_device.c index 49aa3d8be5..640ea505d4 100644 --- a/src/device/root_device.c +++ b/src/device/root_device.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/smbus_ops.c b/src/device/smbus_ops.c index c263d2cae6..12aaf998c9 100644 --- a/src/device/smbus_ops.c +++ b/src/device/smbus_ops.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include diff --git a/src/device/software_i2c.c b/src/device/software_i2c.c index 857adf0428..554880b5da 100644 --- a/src/device/software_i2c.c +++ b/src/device/software_i2c.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include #include -- cgit v1.2.3