aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-06-01 14:54:11 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-06-04 02:40:08 +0000
commit6ec87da84f57fe0d007224dfc584db4fa3df4a0d (patch)
treec279ca200ef83a96c6f9eb692a31fa88c33a8507 /src
parentf369e60329afc60af69338305db090b92ba315ab (diff)
src/commonlib/storage: Move include <console.h> to sd_mmc.h
Non of the .c files is using a function from console.h directly. Include console.h is moved to sd_mmc.h, where sdhc_error("msg..") is defined. Change-Id: Ic9283f227a37785056b9fac216fabcac054066a0 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26752 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/commonlib/storage/bouncebuf.c1
-rw-r--r--src/commonlib/storage/mmc.c1
-rw-r--r--src/commonlib/storage/pci_sdhci.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_display.c1
-rw-r--r--src/commonlib/storage/storage_erase.c1
-rw-r--r--src/commonlib/storage/storage_write.c1
8 files changed, 1 insertions, 7 deletions
diff --git a/src/commonlib/storage/bouncebuf.c b/src/commonlib/storage/bouncebuf.c
index c8125aaa42..6ddfb70af5 100644
--- a/src/commonlib/storage/bouncebuf.c
+++ b/src/commonlib/storage/bouncebuf.c
@@ -16,7 +16,6 @@
*/
#include <arch/cache.h>
-#include <console/console.h>
#include "bouncebuf.h"
#include <halt.h>
#include "storage.h"
diff --git a/src/commonlib/storage/mmc.c b/src/commonlib/storage/mmc.c
index ca067054e0..d88e469291 100644
--- a/src/commonlib/storage/mmc.c
+++ b/src/commonlib/storage/mmc.c
@@ -20,7 +20,6 @@
*/
#include <commonlib/storage.h>
-#include <console/console.h>
#include <delay.h>
#include "sd_mmc.h"
#include "mmc.h"
diff --git a/src/commonlib/storage/pci_sdhci.c b/src/commonlib/storage/pci_sdhci.c
index c53ab001a9..329b652abb 100644
--- a/src/commonlib/storage/pci_sdhci.c
+++ b/src/commonlib/storage/pci_sdhci.c
@@ -20,7 +20,6 @@
#include <assert.h>
#include <commonlib/sdhci.h>
-#include <console/console.h>
#include <device/pci.h>
#include "sd_mmc.h"
#include "storage.h"
diff --git a/src/commonlib/storage/sd_mmc.h b/src/commonlib/storage/sd_mmc.h
index d54bbc7537..b9aea46b5d 100644
--- a/src/commonlib/storage/sd_mmc.h
+++ b/src/commonlib/storage/sd_mmc.h
@@ -18,6 +18,7 @@
#include <commonlib/sd_mmc_ctrlr.h>
#include <commonlib/storage.h>
#include <stddef.h>
+#include <console/console.h>
#define SD_MMC_IO_RETRIES 1000
diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c
index a5508ee032..158e28b648 100644
--- a/src/commonlib/storage/sdhci.c
+++ b/src/commonlib/storage/sdhci.c
@@ -19,7 +19,6 @@
#include <assert.h>
#include "bouncebuf.h"
-#include <console/console.h>
#include <commonlib/sd_mmc_ctrlr.h>
#include <commonlib/sdhci.h>
#include <commonlib/storage.h>
diff --git a/src/commonlib/storage/sdhci_display.c b/src/commonlib/storage/sdhci_display.c
index d05e35a8d7..68747f4b86 100644
--- a/src/commonlib/storage/sdhci_display.c
+++ b/src/commonlib/storage/sdhci_display.c
@@ -20,7 +20,6 @@
#include <commonlib/sd_mmc_ctrlr.h>
#include <commonlib/sdhci.h>
#include <commonlib/storage.h>
-#include <console/console.h>
#include "sdhci.h"
#include "sd_mmc.h"
#include "storage.h"
diff --git a/src/commonlib/storage/storage_erase.c b/src/commonlib/storage/storage_erase.c
index 004a200154..8e97755238 100644
--- a/src/commonlib/storage/storage_erase.c
+++ b/src/commonlib/storage/storage_erase.c
@@ -19,7 +19,6 @@
* GNU General Public License for more details.
*/
-#include <console/console.h>
#include "sd_mmc.h"
#include "storage.h"
diff --git a/src/commonlib/storage/storage_write.c b/src/commonlib/storage/storage_write.c
index ae9fbc2c5e..ba60b41306 100644
--- a/src/commonlib/storage/storage_write.c
+++ b/src/commonlib/storage/storage_write.c
@@ -19,7 +19,6 @@
* GNU General Public License for more details.
*/
-#include <console/console.h>
#include "sd_mmc.h"
#include "storage.h"
#include <string.h>