summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-05-05 20:48:50 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-05-06 22:20:28 +0000
commit02363b5e464e729366ca21421edcebad33f1237e (patch)
treea2d34c9c419aa5bd2e61fb8b91b7d02038bc2757 /src/include
parent56e3df459abafdd9d00fcd0a8ddca7db4730874a (diff)
downloadcoreboot-02363b5e464e729366ca21421edcebad33f1237e.tar.xz
treewide: Move "is part of the coreboot project" line in its own comment
That makes it easier to identify "license only" headers (because they are now license only) Script line used for that: perl -i -p0e 's|/\*.*\n.*This file is part of the coreboot project.*\n.*\*|/* This file is part of the coreboot project. */\n/*|' # ...filelist... Change-Id: I2280b19972e37c36d8c67a67e0320296567fa4f6 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41065 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/console/post_codes.h3
-rw-r--r--src/include/cpu/intel/l2_cache.h3
-rw-r--r--src/include/device/dram/common.h3
-rw-r--r--src/include/device/dram/ddr2.h3
-rw-r--r--src/include/device/dram/ddr3.h3
-rw-r--r--src/include/dimm_info_util.h3
-rw-r--r--src/include/pc80/vga.h3
-rw-r--r--src/include/pc80/vga_io.h3
-rw-r--r--src/include/sdram_mode.h3
-rw-r--r--src/include/spd.h3
-rw-r--r--src/include/spi_bitbang.h3
11 files changed, 11 insertions, 22 deletions
diff --git a/src/include/console/post_codes.h b/src/include/console/post_codes.h
index a9094929c6..416d487eef 100644
--- a/src/include/console/post_codes.h
+++ b/src/include/console/post_codes.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/cpu/intel/l2_cache.h b/src/include/cpu/intel/l2_cache.h
index 74d5acc64a..c253f880da 100644
--- a/src/include/cpu/intel/l2_cache.h
+++ b/src/include/cpu/intel/l2_cache.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/device/dram/common.h b/src/include/device/dram/common.h
index 5dc15e3e4c..32cdc79de1 100644
--- a/src/include/device/dram/common.h
+++ b/src/include/device/dram/common.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/device/dram/ddr2.h b/src/include/device/dram/ddr2.h
index 1da9681169..f83965971b 100644
--- a/src/include/device/dram/ddr2.h
+++ b/src/include/device/dram/ddr2.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/device/dram/ddr3.h b/src/include/device/dram/ddr3.h
index 51207e9999..2ded8a8fdb 100644
--- a/src/include/device/dram/ddr3.h
+++ b/src/include/device/dram/ddr3.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/dimm_info_util.h b/src/include/dimm_info_util.h
index d6603ed60f..48fff6ceb2 100644
--- a/src/include/dimm_info_util.h
+++ b/src/include/dimm_info_util.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version
diff --git a/src/include/pc80/vga.h b/src/include/pc80/vga.h
index 0e3d5f5895..ea47368936 100644
--- a/src/include/pc80/vga.h
+++ b/src/include/pc80/vga.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/pc80/vga_io.h b/src/include/pc80/vga_io.h
index 1f258c4f15..3cfba1b2fb 100644
--- a/src/include/pc80/vga_io.h
+++ b/src/include/pc80/vga_io.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/sdram_mode.h b/src/include/sdram_mode.h
index 763dd562b3..5dadaee3a0 100644
--- a/src/include/sdram_mode.h
+++ b/src/include/sdram_mode.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/spd.h b/src/include/spd.h
index 80d14c1685..cacb20517c 100644
--- a/src/include/spd.h
+++ b/src/include/spd.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/include/spi_bitbang.h b/src/include/spi_bitbang.h
index ac6924e223..4691fd21ec 100644
--- a/src/include/spi_bitbang.h
+++ b/src/include/spi_bitbang.h
@@ -1,6 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License