diff options
-rw-r--r-- | drivers/mmc/host/atmel-mci.c | 2 | ||||
-rw-r--r-- | include/linux/platform_data/mmc-atmel-mci.h | 22 |
2 files changed, 23 insertions, 1 deletions
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c index 77250d4b1979..0b9ddf8aed04 100644 --- a/drivers/mmc/host/atmel-mci.c +++ b/drivers/mmc/host/atmel-mci.c | |||
@@ -30,11 +30,11 @@ | |||
30 | #include <linux/stat.h> | 30 | #include <linux/stat.h> |
31 | #include <linux/types.h> | 31 | #include <linux/types.h> |
32 | #include <linux/platform_data/atmel.h> | 32 | #include <linux/platform_data/atmel.h> |
33 | #include <linux/platform_data/mmc-atmel-mci.h> | ||
33 | 34 | ||
34 | #include <linux/mmc/host.h> | 35 | #include <linux/mmc/host.h> |
35 | #include <linux/mmc/sdio.h> | 36 | #include <linux/mmc/sdio.h> |
36 | 37 | ||
37 | #include <mach/atmel-mci.h> | ||
38 | #include <linux/atmel-mci.h> | 38 | #include <linux/atmel-mci.h> |
39 | #include <linux/atmel_pdc.h> | 39 | #include <linux/atmel_pdc.h> |
40 | 40 | ||
diff --git a/include/linux/platform_data/mmc-atmel-mci.h b/include/linux/platform_data/mmc-atmel-mci.h new file mode 100644 index 000000000000..399a2d5a14bd --- /dev/null +++ b/include/linux/platform_data/mmc-atmel-mci.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef __MMC_ATMEL_MCI_H | ||
2 | #define __MMC_ATMEL_MCI_H | ||
3 | |||
4 | #include <linux/platform_data/dma-atmel.h> | ||
5 | #include <linux/platform_data/dma-dw.h> | ||
6 | |||
7 | /** | ||
8 | * struct mci_dma_data - DMA data for MCI interface | ||
9 | */ | ||
10 | struct mci_dma_data { | ||
11 | #ifdef CONFIG_ARM | ||
12 | struct at_dma_slave sdata; | ||
13 | #else | ||
14 | struct dw_dma_slave sdata; | ||
15 | #endif | ||
16 | }; | ||
17 | |||
18 | /* accessor macros */ | ||
19 | #define slave_data_ptr(s) (&(s)->sdata) | ||
20 | #define find_slave_dev(s) ((s)->sdata.dma_dev) | ||
21 | |||
22 | #endif /* __MMC_ATMEL_MCI_H */ | ||