aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorDavid Brownell <david-b@pacbell.net>2007-10-14 14:50:25 -0700
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-14 16:48:52 -0700
commit23fd50450a34f2558070ceabb0bfebc1c9604af5 (patch)
tree4f19aeb5fed22ae982e213fd14486208e1270f6f /drivers/mmc
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/tglx/linux-2.6-x86 (diff)
downloadlinux-dev-23fd50450a34f2558070ceabb0bfebc1c9604af5.tar.xz
linux-dev-23fd50450a34f2558070ceabb0bfebc1c9604af5.zip
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" <avuton@gmail.com> 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 <dbrownell@users.sourceforge.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/mmc_spi.c2
1 files changed, 1 insertions, 1 deletions
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 <linux/hrtimer.h>
#include <linux/delay.h>
-#include <linux/blkdev.h>
+#include <linux/bio.h>
#include <linux/dma-mapping.h>
#include <linux/crc7.h>
#include <linux/crc-itu-t.h>