summaryrefslogtreecommitdiffstats
path: root/src/commonlib/storage
diff options
context:
space:
mode:
Diffstat (limited to 'src/commonlib/storage')
-rw-r--r--src/commonlib/storage/Kconfig1
-rw-r--r--src/commonlib/storage/Makefile.inc1
-rw-r--r--src/commonlib/storage/bouncebuf.c1
-rw-r--r--src/commonlib/storage/bouncebuf.h1
-rw-r--r--src/commonlib/storage/mmc.c1
-rw-r--r--src/commonlib/storage/mmc.h1
-rw-r--r--src/commonlib/storage/pci_sdhci.c1
-rw-r--r--src/commonlib/storage/sd.c1
-rw-r--r--src/commonlib/storage/sd_mmc.c1
-rw-r--r--src/commonlib/storage/sd_mmc.h1
-rw-r--r--src/commonlib/storage/sdhci.c1
-rw-r--r--src/commonlib/storage/sdhci.h1
-rw-r--r--src/commonlib/storage/sdhci_adma.c1
-rw-r--r--src/commonlib/storage/sdhci_display.c1
-rw-r--r--src/commonlib/storage/storage.c1
-rw-r--r--src/commonlib/storage/storage.h1
-rw-r--r--src/commonlib/storage/storage_erase.c1
-rw-r--r--src/commonlib/storage/storage_write.c1
18 files changed, 0 insertions, 18 deletions
diff --git a/src/commonlib/storage/Kconfig b/src/commonlib/storage/Kconfig
index 3581e2d77d0e..97d09ff997de 100644
--- a/src/commonlib/storage/Kconfig
+++ b/src/commonlib/storage/Kconfig
@@ -1,5 +1,4 @@
##
-## This file is part of the coreboot project.
##
## SPDX-License-Identifier: GPL-2.0-only
diff --git a/src/commonlib/storage/Makefile.inc b/src/commonlib/storage/Makefile.inc
index da56354ff1ae..d33c316562f6 100644
--- a/src/commonlib/storage/Makefile.inc
+++ b/src/commonlib/storage/Makefile.inc
@@ -1,5 +1,4 @@
#
-# This file is part of the coreboot project.
#
# SPDX-License-Identifier: GPL-2.0-only
diff --git a/src/commonlib/storage/bouncebuf.c b/src/commonlib/storage/bouncebuf.c
index 506c7230895f..9edf41aed89c 100644
--- a/src/commonlib/storage/bouncebuf.c
+++ b/src/commonlib/storage/bouncebuf.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Generic bounce buffer implementation
diff --git a/src/commonlib/storage/bouncebuf.h b/src/commonlib/storage/bouncebuf.h
index bdfb9f8366b1..9e3ab746b527 100644
--- a/src/commonlib/storage/bouncebuf.h
+++ b/src/commonlib/storage/bouncebuf.h
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Generic bounce buffer implementation
diff --git a/src/commonlib/storage/mmc.c b/src/commonlib/storage/mmc.c
index 391b45c341b5..2aaa29245f19 100644
--- a/src/commonlib/storage/mmc.c
+++ b/src/commonlib/storage/mmc.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* MultiMediaCard (MMC) and eMMC specific support code
diff --git a/src/commonlib/storage/mmc.h b/src/commonlib/storage/mmc.h
index aa1af0af339e..09e08d67831a 100644
--- a/src/commonlib/storage/mmc.h
+++ b/src/commonlib/storage/mmc.h
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef __COMMONLIB_STORAGE_MMC_H__
diff --git a/src/commonlib/storage/pci_sdhci.c b/src/commonlib/storage/pci_sdhci.c
index 839fb34a0140..e180d9f48ebb 100644
--- a/src/commonlib/storage/pci_sdhci.c
+++ b/src/commonlib/storage/pci_sdhci.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <commonlib/sdhci.h>
diff --git a/src/commonlib/storage/sd.c b/src/commonlib/storage/sd.c
index 5e74cd2e80de..4ca98dfff7b3 100644
--- a/src/commonlib/storage/sd.c
+++ b/src/commonlib/storage/sd.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Secure Digital (SD) card specific support code
diff --git a/src/commonlib/storage/sd_mmc.c b/src/commonlib/storage/sd_mmc.c
index 07e8af8af8e0..17dd55d8967c 100644
--- a/src/commonlib/storage/sd_mmc.c
+++ b/src/commonlib/storage/sd_mmc.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) common initialization
diff --git a/src/commonlib/storage/sd_mmc.h b/src/commonlib/storage/sd_mmc.h
index 72e3ec313abb..9f6c077ab12e 100644
--- a/src/commonlib/storage/sd_mmc.h
+++ b/src/commonlib/storage/sd_mmc.h
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef __COMMONLIB_STORAGE_SD_MMC_H__
diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c
index feef22849701..6d39a45f5e52 100644
--- a/src/commonlib/storage/sdhci.c
+++ b/src/commonlib/storage/sdhci.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Secure Digital (SD) Host Controller interface specific code
diff --git a/src/commonlib/storage/sdhci.h b/src/commonlib/storage/sdhci.h
index 61b2e013a624..74b9de342806 100644
--- a/src/commonlib/storage/sdhci.h
+++ b/src/commonlib/storage/sdhci.h
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef __COMMONLIB_STORAGE_SDHCI_H__
#define __COMMONLIB_STORAGE_SDHCI_H__
diff --git a/src/commonlib/storage/sdhci_adma.c b/src/commonlib/storage/sdhci_adma.c
index 786a57c512e5..92f938f6b1f1 100644
--- a/src/commonlib/storage/sdhci_adma.c
+++ b/src/commonlib/storage/sdhci_adma.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Secure Digital (SD) Host Controller interface DMA support code
diff --git a/src/commonlib/storage/sdhci_display.c b/src/commonlib/storage/sdhci_display.c
index 4d0300e53f93..74f17fdfbb2f 100644
--- a/src/commonlib/storage/sdhci_display.c
+++ b/src/commonlib/storage/sdhci_display.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Secure Digital (SD) Host Controller interface specific code
diff --git a/src/commonlib/storage/storage.c b/src/commonlib/storage/storage.c
index f5d1517cbf2e..41f84bc91ca7 100644
--- a/src/commonlib/storage/storage.c
+++ b/src/commonlib/storage/storage.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) common code which
diff --git a/src/commonlib/storage/storage.h b/src/commonlib/storage/storage.h
index 28f684de5584..cdd5e6c4b3d8 100644
--- a/src/commonlib/storage/storage.h
+++ b/src/commonlib/storage/storage.h
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef __COMMONLIB_STORAGE_STORAGE_H__
diff --git a/src/commonlib/storage/storage_erase.c b/src/commonlib/storage/storage_erase.c
index 4410687ea60c..246fe8b9d173 100644
--- a/src/commonlib/storage/storage_erase.c
+++ b/src/commonlib/storage/storage_erase.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) erase support code.
diff --git a/src/commonlib/storage/storage_write.c b/src/commonlib/storage/storage_write.c
index 216c2172023f..7950a8c45385 100644
--- a/src/commonlib/storage/storage_write.c
+++ b/src/commonlib/storage/storage_write.c
@@ -1,4 +1,3 @@
-/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) write support code.