diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2011-07-26 20:50:23 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-26 11:52:55 -0700 |
commit | 6c0cbef6662aa685c6a47a18039b9d4f1d5abcb1 (patch) | |
tree | f252a8acb18b40603fda064ebc45f040bf467fc5 /drivers/mmc | |
parent | 2ac232f37fa0e8551856a575fe299c47b65b4d66 (diff) | |
download | op-kernel-dev-6c0cbef6662aa685c6a47a18039b9d4f1d5abcb1.zip op-kernel-dev-6c0cbef6662aa685c6a47a18039b9d4f1d5abcb1.tar.gz |
MMC / TMIO: Fix build issue related to struct scatterlist
Fix build issue caused by undefined struct scatterlist in
drivers/mmc/host/tmio_mmc.c.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/tmio_mmc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index 087d880..eeaf643 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h @@ -21,6 +21,7 @@ #include <linux/mutex.h> #include <linux/pagemap.h> #include <linux/spinlock.h> +#include <linux/scatterlist.h> /* Definitions for values the CTRL_SDIO_STATUS register can take. */ #define TMIO_SDIO_STAT_IOIRQ 0x0001 |