summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2013-05-07 10:37:41 +0200
committerJuergen Beisert <jbe@pengutronix.de>2013-05-07 10:37:41 +0200
commitbdd8b5d91b6e7b7facab0492a4ae48d6c7c868bc (patch)
tree3ed197a964544ce016ae4e6f9c02e26624376e04
parent9ae1f8c833daa8979782b53c9398d78cef2222f2 (diff)
downloadOSELAS.BSP-Pengutronix-ChumbyOne-development.tar.gz
OSELAS.BSP-Pengutronix-ChumbyOne-development.tar.xz
fix a priority errordevelopment
Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
-rw-r--r--configs/platform-chumby/patches/barebox-2013.04.0/0008-MCI-Core-move-an-ugly-ifdef-to-the-header-file.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/platform-chumby/patches/barebox-2013.04.0/0008-MCI-Core-move-an-ugly-ifdef-to-the-header-file.patch b/configs/platform-chumby/patches/barebox-2013.04.0/0008-MCI-Core-move-an-ugly-ifdef-to-the-header-file.patch
index 169f96c..c21cd2c 100644
--- a/configs/platform-chumby/patches/barebox-2013.04.0/0008-MCI-Core-move-an-ugly-ifdef-to-the-header-file.patch
+++ b/configs/platform-chumby/patches/barebox-2013.04.0/0008-MCI-Core-move-an-ugly-ifdef-to-the-header-file.patch
@@ -51,7 +51,7 @@ index cf9582d..7f514be 100644
+static inline bool mmc_host_is_spi(const struct mci_host *host)
+{
+#ifdef CONFIG_MCI_SPI
-+ return !!host->host_caps & MMC_CAP_SPI;
++ return !!(host->host_caps & MMC_CAP_SPI);
+#else
+ return false;
+#endif