summaryrefslogtreecommitdiffstats
path: root/src/superio/nsc
diff options
context:
space:
mode:
Diffstat (limited to 'src/superio/nsc')
-rw-r--r--src/superio/nsc/Makefile.inc1
-rw-r--r--src/superio/nsc/common/Kconfig1
-rw-r--r--src/superio/nsc/common/early_serial.c1
-rw-r--r--src/superio/nsc/common/nsc.h1
-rw-r--r--src/superio/nsc/pc87382/Kconfig1
-rw-r--r--src/superio/nsc/pc87382/Makefile.inc1
-rw-r--r--src/superio/nsc/pc87382/pc87382.h1
-rw-r--r--src/superio/nsc/pc87382/superio.c1
-rw-r--r--src/superio/nsc/pc87384/Kconfig1
-rw-r--r--src/superio/nsc/pc87384/Makefile.inc1
-rw-r--r--src/superio/nsc/pc87384/pc87384.h1
-rw-r--r--src/superio/nsc/pc87384/superio.c1
-rw-r--r--src/superio/nsc/pc87392/Kconfig1
-rw-r--r--src/superio/nsc/pc87392/Makefile.inc1
-rw-r--r--src/superio/nsc/pc87392/pc87392.h1
-rw-r--r--src/superio/nsc/pc87392/superio.c1
-rw-r--r--src/superio/nsc/pc87417/Kconfig1
-rw-r--r--src/superio/nsc/pc87417/Makefile.inc1
-rw-r--r--src/superio/nsc/pc87417/early_init.c1
-rw-r--r--src/superio/nsc/pc87417/pc87417.h1
-rw-r--r--src/superio/nsc/pc87417/superio.c1
21 files changed, 0 insertions, 21 deletions
diff --git a/src/superio/nsc/Makefile.inc b/src/superio/nsc/Makefile.inc
index 1e9582195f9e..1b5c395cd689 100644
--- a/src/superio/nsc/Makefile.inc
+++ b/src/superio/nsc/Makefile.inc
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
-# This file is part of the coreboot project.
## include generic nsc pre-ram stage driver
bootblock-$(CONFIG_SUPERIO_NSC_COMMON_PRE_RAM) += common/early_serial.c
diff --git a/src/superio/nsc/common/Kconfig b/src/superio/nsc/common/Kconfig
index 9b03b717aeb3..41e66d86cbc1 100644
--- a/src/superio/nsc/common/Kconfig
+++ b/src/superio/nsc/common/Kconfig
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
-# This file is part of the coreboot project.
# Generic NSC romstage driver - Just enough UART initialisation code for
# pre-ram.
diff --git a/src/superio/nsc/common/early_serial.c b/src/superio/nsc/common/early_serial.c
index d91492056e76..ba86e8419fe2 100644
--- a/src/superio/nsc/common/early_serial.c
+++ b/src/superio/nsc/common/early_serial.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <device/pnp_ops.h>
#include <device/pnp_def.h>
diff --git a/src/superio/nsc/common/nsc.h b/src/superio/nsc/common/nsc.h
index a4e438e8e01d..f135e4e28198 100644
--- a/src/superio/nsc/common/nsc.h
+++ b/src/superio/nsc/common/nsc.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#ifndef SUPERIO_NSC_COMMON_PRE_RAM_H
#define SUPERIO_NSC_COMMON_PRE_RAM_H
diff --git a/src/superio/nsc/pc87382/Kconfig b/src/superio/nsc/pc87382/Kconfig
index cb519edfa6e6..5e8c23fd6203 100644
--- a/src/superio/nsc/pc87382/Kconfig
+++ b/src/superio/nsc/pc87382/Kconfig
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
-# This file is part of the coreboot project.
config SUPERIO_NSC_PC87382
bool
diff --git a/src/superio/nsc/pc87382/Makefile.inc b/src/superio/nsc/pc87382/Makefile.inc
index 1ed65b0562e3..53e115761840 100644
--- a/src/superio/nsc/pc87382/Makefile.inc
+++ b/src/superio/nsc/pc87382/Makefile.inc
@@ -1,4 +1,3 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# This file is part of the coreboot project.
ramstage-$(CONFIG_SUPERIO_NSC_PC87382) += superio.c
diff --git a/src/superio/nsc/pc87382/pc87382.h b/src/superio/nsc/pc87382/pc87382.h
index 9349b5e86f82..6fb8913202bf 100644
--- a/src/superio/nsc/pc87382/pc87382.h
+++ b/src/superio/nsc/pc87382/pc87382.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#ifndef SUPERIO_NSC_PC87382_H
#define SUPERIO_NSC_PC87382_H
diff --git a/src/superio/nsc/pc87382/superio.c b/src/superio/nsc/pc87382/superio.c
index 48968b166b42..355aca49ab2b 100644
--- a/src/superio/nsc/pc87382/superio.c
+++ b/src/superio/nsc/pc87382/superio.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <device/device.h>
#include <device/pnp.h>
diff --git a/src/superio/nsc/pc87384/Kconfig b/src/superio/nsc/pc87384/Kconfig
index cb344878c21e..bb4e2b526c71 100644
--- a/src/superio/nsc/pc87384/Kconfig
+++ b/src/superio/nsc/pc87384/Kconfig
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
-# This file is part of the coreboot project.
config SUPERIO_NSC_PC87384
bool
diff --git a/src/superio/nsc/pc87384/Makefile.inc b/src/superio/nsc/pc87384/Makefile.inc
index eefef1c0c2a3..0ea9cdbe1a9f 100644
--- a/src/superio/nsc/pc87384/Makefile.inc
+++ b/src/superio/nsc/pc87384/Makefile.inc
@@ -1,4 +1,3 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# This file is part of the coreboot project.
ramstage-$(CONFIG_SUPERIO_NSC_PC87384) += superio.c
diff --git a/src/superio/nsc/pc87384/pc87384.h b/src/superio/nsc/pc87384/pc87384.h
index 579def4deab6..9cc1246121d9 100644
--- a/src/superio/nsc/pc87384/pc87384.h
+++ b/src/superio/nsc/pc87384/pc87384.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#ifndef SUPERIO_NSC_PC87384_H
#define SUPERIO_NSC_PC87384_H
diff --git a/src/superio/nsc/pc87384/superio.c b/src/superio/nsc/pc87384/superio.c
index 14bd059d860b..88d4d3699089 100644
--- a/src/superio/nsc/pc87384/superio.c
+++ b/src/superio/nsc/pc87384/superio.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <device/device.h>
#include <device/pnp.h>
diff --git a/src/superio/nsc/pc87392/Kconfig b/src/superio/nsc/pc87392/Kconfig
index b15310bd1aa7..9b965132ba04 100644
--- a/src/superio/nsc/pc87392/Kconfig
+++ b/src/superio/nsc/pc87392/Kconfig
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
-# This file is part of the coreboot project.
config SUPERIO_NSC_PC87392
bool
diff --git a/src/superio/nsc/pc87392/Makefile.inc b/src/superio/nsc/pc87392/Makefile.inc
index 02db8e931f2d..18ed748c4eda 100644
--- a/src/superio/nsc/pc87392/Makefile.inc
+++ b/src/superio/nsc/pc87392/Makefile.inc
@@ -1,4 +1,3 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# This file is part of the coreboot project.
ramstage-$(CONFIG_SUPERIO_NSC_PC87392) += superio.c
diff --git a/src/superio/nsc/pc87392/pc87392.h b/src/superio/nsc/pc87392/pc87392.h
index 30c85e3c7832..fd53fd23a460 100644
--- a/src/superio/nsc/pc87392/pc87392.h
+++ b/src/superio/nsc/pc87392/pc87392.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#ifndef SUPERIO_NSC_PC87392_H
#define SUPERIO_NSC_PC87392_H
diff --git a/src/superio/nsc/pc87392/superio.c b/src/superio/nsc/pc87392/superio.c
index a60bab4e0488..e65afeab6eed 100644
--- a/src/superio/nsc/pc87392/superio.c
+++ b/src/superio/nsc/pc87392/superio.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <device/device.h>
#include <device/pnp.h>
diff --git a/src/superio/nsc/pc87417/Kconfig b/src/superio/nsc/pc87417/Kconfig
index aae06582ebf6..e9b323a2214a 100644
--- a/src/superio/nsc/pc87417/Kconfig
+++ b/src/superio/nsc/pc87417/Kconfig
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
-# This file is part of the coreboot project.
config SUPERIO_NSC_PC87417
bool
diff --git a/src/superio/nsc/pc87417/Makefile.inc b/src/superio/nsc/pc87417/Makefile.inc
index 7addeaeba6a6..6820902922fc 100644
--- a/src/superio/nsc/pc87417/Makefile.inc
+++ b/src/superio/nsc/pc87417/Makefile.inc
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-or-later
-# This file is part of the coreboot project.
bootblock-$(CONFIG_SUPERIO_NSC_PC87417) += early_init.c
romstage-$(CONFIG_SUPERIO_NSC_PC87417) += early_init.c
diff --git a/src/superio/nsc/pc87417/early_init.c b/src/superio/nsc/pc87417/early_init.c
index 251e7a9bad2b..c3af2d731403 100644
--- a/src/superio/nsc/pc87417/early_init.c
+++ b/src/superio/nsc/pc87417/early_init.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <arch/io.h>
#include <device/pnp_ops.h>
diff --git a/src/superio/nsc/pc87417/pc87417.h b/src/superio/nsc/pc87417/pc87417.h
index f544ad2c1c00..a2c099fd6f80 100644
--- a/src/superio/nsc/pc87417/pc87417.h
+++ b/src/superio/nsc/pc87417/pc87417.h
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#ifndef SUPERIO_NSC_PC87417_H
#define SUPERIO_NSC_PC87417_H
diff --git a/src/superio/nsc/pc87417/superio.c b/src/superio/nsc/pc87417/superio.c
index 320a56394c59..be99f7f03165 100644
--- a/src/superio/nsc/pc87417/superio.c
+++ b/src/superio/nsc/pc87417/superio.c
@@ -1,5 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-/* This file is part of the coreboot project. */
#include <device/device.h>
#include <device/pnp.h>