summaryrefslogtreecommitdiff
path: root/src/mainboard/protectli
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-05-10 16:41:01 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-05-11 17:11:40 +0000
commit6b5bc77c9b22c398262ff3f4dae3e14904c57366 (patch)
treeab40c703d92f906f8604635f091f809b59233efa /src/mainboard/protectli
parenta83c6bc907b8ef77935ba62789bc4ed60716986d (diff)
downloadcoreboot-6b5bc77c9b22c398262ff3f4dae3e14904c57366.tar.xz
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 <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/protectli')
-rw-r--r--src/mainboard/protectli/vault_bsw/Makefile.inc1
-rw-r--r--src/mainboard/protectli/vault_bsw/acpi/mainboard.asl1
-rw-r--r--src/mainboard/protectli/vault_bsw/acpi/superio.asl1
-rw-r--r--src/mainboard/protectli/vault_bsw/acpi_tables.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/com_init.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/dsdt.asl1
-rw-r--r--src/mainboard/protectli/vault_bsw/fadt.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/gpio.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/irqroute.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/irqroute.h1
-rw-r--r--src/mainboard/protectli/vault_bsw/mainboard.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/onboard.h1
-rw-r--r--src/mainboard/protectli/vault_bsw/ramstage.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/romstage.c1
-rw-r--r--src/mainboard/protectli/vault_bsw/spi_vscc.c1
-rw-r--r--src/mainboard/protectli/vault_kbl/Makefile.inc1
-rw-r--r--src/mainboard/protectli/vault_kbl/bootblock.c1
-rw-r--r--src/mainboard/protectli/vault_kbl/dsdt.asl1
-rw-r--r--src/mainboard/protectli/vault_kbl/gma-mainboard.ads1
-rw-r--r--src/mainboard/protectli/vault_kbl/gpio.h1
-rw-r--r--src/mainboard/protectli/vault_kbl/ramstage.c1
-rw-r--r--src/mainboard/protectli/vault_kbl/romstage.c1
22 files changed, 0 insertions, 22 deletions
diff --git a/src/mainboard/protectli/vault_bsw/Makefile.inc b/src/mainboard/protectli/vault_bsw/Makefile.inc
index 75104bf6d1..83bac9521a 100644
--- a/src/mainboard/protectli/vault_bsw/Makefile.inc
+++ b/src/mainboard/protectli/vault_bsw/Makefile.inc
@@ -1,5 +1,4 @@
## SPDX-License-Identifier: GPL-2.0-or-later
-## This file is part of the coreboot project.
bootblock-y += com_init.c
diff --git a/src/mainboard/protectli/vault_bsw/acpi/mainboard.asl b/src/mainboard/protectli/vault_bsw/acpi/mainboard.asl
index 06aa41f5e7..38779c2467 100644
--- a/src/mainboard/protectli/vault_bsw/acpi/mainboard.asl
+++ b/src/mainboard/protectli/vault_bsw/acpi/mainboard.asl
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
Scope (\_SB.GPNC)
{
diff --git a/src/mainboard/protectli/vault_bsw/acpi/superio.asl b/src/mainboard/protectli/vault_bsw/acpi/superio.asl
index 940cc2377b..e51eb00603 100644
--- a/src/mainboard/protectli/vault_bsw/acpi/superio.asl
+++ b/src/mainboard/protectli/vault_bsw/acpi/superio.asl
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
Device (COM1) {
Name (_HID, EISAID ("PNP0501"))
diff --git a/src/mainboard/protectli/vault_bsw/acpi_tables.c b/src/mainboard/protectli/vault_bsw/acpi_tables.c
index 948b56201a..f502741f5c 100644
--- a/src/mainboard/protectli/vault_bsw/acpi_tables.c
+++ b/src/mainboard/protectli/vault_bsw/acpi_tables.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <arch/ioapic.h>
#include <soc/acpi.h>
diff --git a/src/mainboard/protectli/vault_bsw/com_init.c b/src/mainboard/protectli/vault_bsw/com_init.c
index c599039c02..840fd3ae5b 100644
--- a/src/mainboard/protectli/vault_bsw/com_init.c
+++ b/src/mainboard/protectli/vault_bsw/com_init.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <bootblock_common.h>
#include <superio/ite/common/ite.h>
diff --git a/src/mainboard/protectli/vault_bsw/dsdt.asl b/src/mainboard/protectli/vault_bsw/dsdt.asl
index 8e0c7a9cc1..c5e2ed3111 100644
--- a/src/mainboard/protectli/vault_bsw/dsdt.asl
+++ b/src/mainboard/protectli/vault_bsw/dsdt.asl
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <acpi/acpi.h>
DefinitionBlock(
diff --git a/src/mainboard/protectli/vault_bsw/fadt.c b/src/mainboard/protectli/vault_bsw/fadt.c
index a84e063648..755ac6e919 100644
--- a/src/mainboard/protectli/vault_bsw/fadt.c
+++ b/src/mainboard/protectli/vault_bsw/fadt.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <soc/acpi.h>
#include <string.h>
diff --git a/src/mainboard/protectli/vault_bsw/gpio.c b/src/mainboard/protectli/vault_bsw/gpio.c
index 741d51e33b..b748799819 100644
--- a/src/mainboard/protectli/vault_bsw/gpio.c
+++ b/src/mainboard/protectli/vault_bsw/gpio.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <soc/gpio.h>
diff --git a/src/mainboard/protectli/vault_bsw/irqroute.c b/src/mainboard/protectli/vault_bsw/irqroute.c
index 79bce75378..6f9823a433 100644
--- a/src/mainboard/protectli/vault_bsw/irqroute.c
+++ b/src/mainboard/protectli/vault_bsw/irqroute.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include "irqroute.h"
diff --git a/src/mainboard/protectli/vault_bsw/irqroute.h b/src/mainboard/protectli/vault_bsw/irqroute.h
index 5c2e34dcd5..1cde33e8ee 100644
--- a/src/mainboard/protectli/vault_bsw/irqroute.h
+++ b/src/mainboard/protectli/vault_bsw/irqroute.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <soc/irq.h>
#include <soc/pci_devs.h>
diff --git a/src/mainboard/protectli/vault_bsw/mainboard.c b/src/mainboard/protectli/vault_bsw/mainboard.c
index 1fd891918b..3c9c45c476 100644
--- a/src/mainboard/protectli/vault_bsw/mainboard.c
+++ b/src/mainboard/protectli/vault_bsw/mainboard.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <arch/mmio.h>
#include <device/device.h>
diff --git a/src/mainboard/protectli/vault_bsw/onboard.h b/src/mainboard/protectli/vault_bsw/onboard.h
index fcdb3a70b8..d97801e86e 100644
--- a/src/mainboard/protectli/vault_bsw/onboard.h
+++ b/src/mainboard/protectli/vault_bsw/onboard.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#ifndef ONBOARD_H
#define ONBOARD_H
diff --git a/src/mainboard/protectli/vault_bsw/ramstage.c b/src/mainboard/protectli/vault_bsw/ramstage.c
index 6320ca7a67..61be3bbbd8 100644
--- a/src/mainboard/protectli/vault_bsw/ramstage.c
+++ b/src/mainboard/protectli/vault_bsw/ramstage.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <soc/ramstage.h>
diff --git a/src/mainboard/protectli/vault_bsw/romstage.c b/src/mainboard/protectli/vault_bsw/romstage.c
index 37a75dc56c..0745352582 100644
--- a/src/mainboard/protectli/vault_bsw/romstage.c
+++ b/src/mainboard/protectli/vault_bsw/romstage.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <device/pci_ops.h>
#include <soc/lpc.h>
diff --git a/src/mainboard/protectli/vault_bsw/spi_vscc.c b/src/mainboard/protectli/vault_bsw/spi_vscc.c
index 529a78eb22..13fb835b66 100644
--- a/src/mainboard/protectli/vault_bsw/spi_vscc.c
+++ b/src/mainboard/protectli/vault_bsw/spi_vscc.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <soc/spi.h>
#include <string.h>
diff --git a/src/mainboard/protectli/vault_kbl/Makefile.inc b/src/mainboard/protectli/vault_kbl/Makefile.inc
index d7387486bf..4cd7aaca85 100644
--- a/src/mainboard/protectli/vault_kbl/Makefile.inc
+++ b/src/mainboard/protectli/vault_kbl/Makefile.inc
@@ -1,5 +1,4 @@
## SPDX-License-Identifier: GPL-2.0-or-later
-## This file is part of the coreboot project.
bootblock-y += bootblock.c
diff --git a/src/mainboard/protectli/vault_kbl/bootblock.c b/src/mainboard/protectli/vault_kbl/bootblock.c
index 125f9bfa5e..a11b5fdc3b 100644
--- a/src/mainboard/protectli/vault_kbl/bootblock.c
+++ b/src/mainboard/protectli/vault_kbl/bootblock.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <bootblock_common.h>
#include <superio/ite/it8772f/it8772f.h>
diff --git a/src/mainboard/protectli/vault_kbl/dsdt.asl b/src/mainboard/protectli/vault_kbl/dsdt.asl
index 77b1afe7f9..5b3a5dfc8d 100644
--- a/src/mainboard/protectli/vault_kbl/dsdt.asl
+++ b/src/mainboard/protectli/vault_kbl/dsdt.asl
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <acpi/acpi.h>
DefinitionBlock(
diff --git a/src/mainboard/protectli/vault_kbl/gma-mainboard.ads b/src/mainboard/protectli/vault_kbl/gma-mainboard.ads
index b7cae7837a..0e0f4f817f 100644
--- a/src/mainboard/protectli/vault_kbl/gma-mainboard.ads
+++ b/src/mainboard/protectli/vault_kbl/gma-mainboard.ads
@@ -1,5 +1,4 @@
-- SPDX-License-Identifier: GPL-2.0-or-later
--- This file is part of the coreboot project.
with HW.GFX.GMA;
with HW.GFX.GMA.Display_Probing;
diff --git a/src/mainboard/protectli/vault_kbl/gpio.h b/src/mainboard/protectli/vault_kbl/gpio.h
index 3397d79882..4af4b1476a 100644
--- a/src/mainboard/protectli/vault_kbl/gpio.h
+++ b/src/mainboard/protectli/vault_kbl/gpio.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#ifndef _GPIOFW6B_H
#define _GPIOFW6B_H
diff --git a/src/mainboard/protectli/vault_kbl/ramstage.c b/src/mainboard/protectli/vault_kbl/ramstage.c
index e9273ba907..266094a464 100644
--- a/src/mainboard/protectli/vault_kbl/ramstage.c
+++ b/src/mainboard/protectli/vault_kbl/ramstage.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <bootstate.h>
#include <soc/ramstage.h>
diff --git a/src/mainboard/protectli/vault_kbl/romstage.c b/src/mainboard/protectli/vault_kbl/romstage.c
index e65151bc0e..2b68e1aa1e 100644
--- a/src/mainboard/protectli/vault_kbl/romstage.c
+++ b/src/mainboard/protectli/vault_kbl/romstage.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <fsp/api.h>
#include <soc/romstage.h>