From 23fd50450a34f2558070ceabb0bfebc1c9604af5 Mon Sep 17 00:00:00 2001 From: David Brownell Date: Sun, 14 Oct 2007 14:50:25 -0700 Subject: [PATCH] Fix compile while compiling drivers/mmc/host/mmc_spi.o with !BLOCK Make sure the mmc_spi driver can build without CONFIG_BLOCK. Issue noted by "Avuton Olrich" and randconfig. While that won't be a common configuration, sometimes embedded boards use SDIO to interface WLAN or Bluetooth chips (vs some parallel interface), and don't provide an MMC/SD socket for use with flash memory cards. Signed-off-by: David Brownell Signed-off-by: Linus Torvalds --- drivers/mmc/host/mmc_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c index f30327bba6f6..254b194e7625 100644 --- a/drivers/mmc/host/mmc_spi.c +++ b/drivers/mmc/host/mmc_spi.c @@ -26,7 +26,7 @@ */ #include #include -#include +#include #include #include #include