diff options
Diffstat (limited to 'src/drivers/pc80')
-rw-r--r-- | src/drivers/pc80/pc/i8254.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/pc/i8259.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/pc/isa-dma.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/pc/keyboard.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/pc/ps2_controller.asl | 1 | ||||
-rw-r--r-- | src/drivers/pc80/pc/spkmodem.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/rtc/mc146818rtc.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/rtc/mc146818rtc_boot.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/rtc/option.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/rtc/post.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/tpm/chip.h | 1 | ||||
-rw-r--r-- | src/drivers/pc80/tpm/tis.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga.h | 1 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga_font_8x16.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga_io.c | 1 | ||||
-rw-r--r-- | src/drivers/pc80/vga/vga_palette.c | 1 |
17 files changed, 0 insertions, 17 deletions
diff --git a/src/drivers/pc80/pc/i8254.c b/src/drivers/pc80/pc/i8254.c index cb5601102c..b32ac707ad 100644 --- a/src/drivers/pc80/pc/i8254.c +++ b/src/drivers/pc80/pc/i8254.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <arch/io.h> #include <commonlib/helpers.h> diff --git a/src/drivers/pc80/pc/i8259.c b/src/drivers/pc80/pc/i8259.c index 3d7ecbbb7e..1126f14629 100644 --- a/src/drivers/pc80/pc/i8259.c +++ b/src/drivers/pc80/pc/i8259.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <arch/io.h> #include <pc80/i8259.h> diff --git a/src/drivers/pc80/pc/isa-dma.c b/src/drivers/pc80/pc/isa-dma.c index b5bdd0bfc9..dbb2362836 100644 --- a/src/drivers/pc80/pc/isa-dma.c +++ b/src/drivers/pc80/pc/isa-dma.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <arch/io.h> #include <pc80/isa-dma.h> diff --git a/src/drivers/pc80/pc/keyboard.c b/src/drivers/pc80/pc/keyboard.c index 64deacaea1..a96dba7030 100644 --- a/src/drivers/pc80/pc/keyboard.c +++ b/src/drivers/pc80/pc/keyboard.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <console/console.h> #include <pc80/keyboard.h> diff --git a/src/drivers/pc80/pc/ps2_controller.asl b/src/drivers/pc80/pc/ps2_controller.asl index d37ea2e7fd..48ddeb4a5c 100644 --- a/src/drivers/pc80/pc/ps2_controller.asl +++ b/src/drivers/pc80/pc/ps2_controller.asl @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ Device (PS2K) // Keyboard { Name(_HID, EISAID(CONFIG_PS2K_EISAID)) diff --git a/src/drivers/pc80/pc/spkmodem.c b/src/drivers/pc80/pc/spkmodem.c index ee3175767f..7b88c0adc0 100644 --- a/src/drivers/pc80/pc/spkmodem.c +++ b/src/drivers/pc80/pc/spkmodem.c @@ -1,4 +1,3 @@ -/* This file is part of the coreboot project. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ #include <arch/io.h> diff --git a/src/drivers/pc80/rtc/mc146818rtc.c b/src/drivers/pc80/rtc/mc146818rtc.c index d34fbb13cf..832d4fda2f 100644 --- a/src/drivers/pc80/rtc/mc146818rtc.c +++ b/src/drivers/pc80/rtc/mc146818rtc.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <acpi/acpi.h> #include <arch/io.h> diff --git a/src/drivers/pc80/rtc/mc146818rtc_boot.c b/src/drivers/pc80/rtc/mc146818rtc_boot.c index d470d8fcfb..fbcf387f63 100644 --- a/src/drivers/pc80/rtc/mc146818rtc_boot.c +++ b/src/drivers/pc80/rtc/mc146818rtc_boot.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <stdint.h> #include <console/console.h> diff --git a/src/drivers/pc80/rtc/option.c b/src/drivers/pc80/rtc/option.c index 0f6b7f0d27..5815e7c239 100644 --- a/src/drivers/pc80/rtc/option.c +++ b/src/drivers/pc80/rtc/option.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <console/console.h> #include <string.h> diff --git a/src/drivers/pc80/rtc/post.c b/src/drivers/pc80/rtc/post.c index 842deb71f6..aa8ea18ee9 100644 --- a/src/drivers/pc80/rtc/post.c +++ b/src/drivers/pc80/rtc/post.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #include <stdint.h> #include <post.h> diff --git a/src/drivers/pc80/tpm/chip.h b/src/drivers/pc80/tpm/chip.h index 35f66c9bc5..af731530f1 100644 --- a/src/drivers/pc80/tpm/chip.h +++ b/src/drivers/pc80/tpm/chip.h @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #ifndef DRIVERS_PC80_TPM_CHIP_H #define DRIVERS_PC80_TPM_CHIP_H diff --git a/src/drivers/pc80/tpm/tis.c b/src/drivers/pc80/tpm/tis.c index 5994cefd86..185df34dc4 100644 --- a/src/drivers/pc80/tpm/tis.c +++ b/src/drivers/pc80/tpm/tis.c @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ /* * The code in this file has been heavily based on the article "Writing a TPM diff --git a/src/drivers/pc80/vga/vga.c b/src/drivers/pc80/vga/vga.c index 7bb10cf610..dde03558d9 100644 --- a/src/drivers/pc80/vga/vga.c +++ b/src/drivers/pc80/vga/vga.c @@ -1,4 +1,3 @@ -/* This file is part of the coreboot project. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ #include <pc80/vga.h> diff --git a/src/drivers/pc80/vga/vga.h b/src/drivers/pc80/vga/vga.h index 0b53de2758..dcc1c9a1a6 100644 --- a/src/drivers/pc80/vga/vga.h +++ b/src/drivers/pc80/vga/vga.h @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ #ifndef _VGA_H #define _VGA_H diff --git a/src/drivers/pc80/vga/vga_font_8x16.c b/src/drivers/pc80/vga/vga_font_8x16.c index fc9d77a0bd..868dc1ebc4 100644 --- a/src/drivers/pc80/vga/vga_font_8x16.c +++ b/src/drivers/pc80/vga/vga_font_8x16.c @@ -1,4 +1,3 @@ -/* This file is part of the coreboot project. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ #include "vga.h" diff --git a/src/drivers/pc80/vga/vga_io.c b/src/drivers/pc80/vga/vga_io.c index 62563dd9ce..e4b1eb902f 100644 --- a/src/drivers/pc80/vga/vga_io.c +++ b/src/drivers/pc80/vga/vga_io.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/drivers/pc80/vga/vga_palette.c b/src/drivers/pc80/vga/vga_palette.c index 19e76511a0..c384e04981 100644 --- a/src/drivers/pc80/vga/vga_palette.c +++ b/src/drivers/pc80/vga/vga_palette.c @@ -1,4 +1,3 @@ -/* This file is part of the coreboot project. */ /* SPDX-License-Identifier: GPL-2.0-or-later */ #include "vga.h" |