summaryrefslogtreecommitdiff
path: root/src/commonlib
diff options
context:
space:
mode:
Diffstat (limited to 'src/commonlib')
-rw-r--r--src/commonlib/include/commonlib/loglevel.h3
-rw-r--r--src/commonlib/include/commonlib/sd_mmc_ctrlr.h3
-rw-r--r--src/commonlib/include/commonlib/sdhci.h3
-rw-r--r--src/commonlib/include/commonlib/storage.h3
-rw-r--r--src/commonlib/storage/bouncebuf.c3
-rw-r--r--src/commonlib/storage/bouncebuf.h3
-rw-r--r--src/commonlib/storage/mmc.c3
-rw-r--r--src/commonlib/storage/mmc.h3
-rw-r--r--src/commonlib/storage/pci_sdhci.c3
-rw-r--r--src/commonlib/storage/sd.c3
-rw-r--r--src/commonlib/storage/sd_mmc.c3
-rw-r--r--src/commonlib/storage/sd_mmc.h3
-rw-r--r--src/commonlib/storage/sdhci.c3
-rw-r--r--src/commonlib/storage/sdhci.h3
-rw-r--r--src/commonlib/storage/sdhci_adma.c3
-rw-r--r--src/commonlib/storage/sdhci_display.c3
-rw-r--r--src/commonlib/storage/storage.c3
-rw-r--r--src/commonlib/storage/storage.h3
-rw-r--r--src/commonlib/storage/storage_erase.c3
-rw-r--r--src/commonlib/storage/storage_write.c3
20 files changed, 20 insertions, 40 deletions
diff --git a/src/commonlib/include/commonlib/loglevel.h b/src/commonlib/include/commonlib/loglevel.h
index 7a1654179d..30209092fd 100644
--- a/src/commonlib/include/commonlib/loglevel.h
+++ b/src/commonlib/include/commonlib/loglevel.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
* the Free Software Foundation; either version 2 of the License, or
diff --git a/src/commonlib/include/commonlib/sd_mmc_ctrlr.h b/src/commonlib/include/commonlib/sd_mmc_ctrlr.h
index d4a7d54ff5..0807d2e2c5 100644
--- a/src/commonlib/include/commonlib/sd_mmc_ctrlr.h
+++ b/src/commonlib/include/commonlib/sd_mmc_ctrlr.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/include/commonlib/sdhci.h b/src/commonlib/include/commonlib/sdhci.h
index 015fd0c6f9..126ef0176b 100644
--- a/src/commonlib/include/commonlib/sdhci.h
+++ b/src/commonlib/include/commonlib/sdhci.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/include/commonlib/storage.h b/src/commonlib/include/commonlib/storage.h
index faba2fe5a9..ce5f93acaa 100644
--- a/src/commonlib/include/commonlib/storage.h
+++ b/src/commonlib/include/commonlib/storage.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/bouncebuf.c b/src/commonlib/storage/bouncebuf.c
index 99287b6270..6bc5cf4103 100644
--- a/src/commonlib/storage/bouncebuf.c
+++ b/src/commonlib/storage/bouncebuf.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/bouncebuf.h b/src/commonlib/storage/bouncebuf.h
index 3e702fad29..6a2e759614 100644
--- a/src/commonlib/storage/bouncebuf.h
+++ b/src/commonlib/storage/bouncebuf.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/mmc.c b/src/commonlib/storage/mmc.c
index 8eaa2ee611..6346c432ba 100644
--- a/src/commonlib/storage/mmc.c
+++ b/src/commonlib/storage/mmc.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/mmc.h b/src/commonlib/storage/mmc.h
index 2441d5d7e8..621c5414b1 100644
--- a/src/commonlib/storage/mmc.h
+++ b/src/commonlib/storage/mmc.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/pci_sdhci.c b/src/commonlib/storage/pci_sdhci.c
index 380f2db557..fbc73a8825 100644
--- a/src/commonlib/storage/pci_sdhci.c
+++ b/src/commonlib/storage/pci_sdhci.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/sd.c b/src/commonlib/storage/sd.c
index 30af81088d..1b4bee0b47 100644
--- a/src/commonlib/storage/sd.c
+++ b/src/commonlib/storage/sd.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/sd_mmc.c b/src/commonlib/storage/sd_mmc.c
index c5fa76c730..c8df33595a 100644
--- a/src/commonlib/storage/sd_mmc.c
+++ b/src/commonlib/storage/sd_mmc.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/sd_mmc.h b/src/commonlib/storage/sd_mmc.h
index b1ae0f3f06..9ad2a9e52a 100644
--- a/src/commonlib/storage/sd_mmc.h
+++ b/src/commonlib/storage/sd_mmc.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c
index 246b9b9d2d..47286c54d2 100644
--- a/src/commonlib/storage/sdhci.c
+++ b/src/commonlib/storage/sdhci.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/sdhci.h b/src/commonlib/storage/sdhci.h
index c745b8cc09..ff0af13f19 100644
--- a/src/commonlib/storage/sdhci.h
+++ b/src/commonlib/storage/sdhci.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/sdhci_adma.c b/src/commonlib/storage/sdhci_adma.c
index 2ca4b5557c..843497116c 100644
--- a/src/commonlib/storage/sdhci_adma.c
+++ b/src/commonlib/storage/sdhci_adma.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/sdhci_display.c b/src/commonlib/storage/sdhci_display.c
index 1bb0bcf8d8..4169f7ec98 100644
--- a/src/commonlib/storage/sdhci_display.c
+++ b/src/commonlib/storage/sdhci_display.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/storage.c b/src/commonlib/storage/storage.c
index df040cae21..8f5a72f248 100644
--- a/src/commonlib/storage/storage.c
+++ b/src/commonlib/storage/storage.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/storage.h b/src/commonlib/storage/storage.h
index f03ed554fc..67e21a40af 100644
--- a/src/commonlib/storage/storage.h
+++ b/src/commonlib/storage/storage.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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/storage_erase.c b/src/commonlib/storage/storage_erase.c
index a8da366438..b01388077e 100644
--- a/src/commonlib/storage/storage_erase.c
+++ b/src/commonlib/storage/storage_erase.c
@@ -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 the Free Software Foundation; either version 2 of
diff --git a/src/commonlib/storage/storage_write.c b/src/commonlib/storage/storage_write.c
index ec19dd2182..edf13fc0a3 100644
--- a/src/commonlib/storage/storage_write.c
+++ b/src/commonlib/storage/storage_write.c
@@ -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 the Free Software Foundation; either version 2 of