diff options
Diffstat (limited to 'arch/avr32/include/asm/atmel-mci.h')
-rw-r--r-- | arch/avr32/include/asm/atmel-mci.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/avr32/include/asm/atmel-mci.h b/arch/avr32/include/asm/atmel-mci.h index 5d5ae1295cfd..59f3fadd0b68 100644 --- a/arch/avr32/include/asm/atmel-mci.h +++ b/arch/avr32/include/asm/atmel-mci.h | |||
@@ -3,6 +3,8 @@ | |||
3 | 3 | ||
4 | #define ATMEL_MCI_MAX_NR_SLOTS 2 | 4 | #define ATMEL_MCI_MAX_NR_SLOTS 2 |
5 | 5 | ||
6 | struct dma_slave; | ||
7 | |||
6 | /** | 8 | /** |
7 | * struct mci_slot_pdata - board-specific per-slot configuration | 9 | * struct mci_slot_pdata - board-specific per-slot configuration |
8 | * @bus_width: Number of data lines wired up the slot | 10 | * @bus_width: Number of data lines wired up the slot |
@@ -26,9 +28,11 @@ struct mci_slot_pdata { | |||
26 | 28 | ||
27 | /** | 29 | /** |
28 | * struct mci_platform_data - board-specific MMC/SDcard configuration | 30 | * struct mci_platform_data - board-specific MMC/SDcard configuration |
31 | * @dma_slave: DMA slave interface to use in data transfers, or NULL. | ||
29 | * @slot: Per-slot configuration data. | 32 | * @slot: Per-slot configuration data. |
30 | */ | 33 | */ |
31 | struct mci_platform_data { | 34 | struct mci_platform_data { |
35 | struct dma_slave *dma_slave; | ||
32 | struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS]; | 36 | struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS]; |
33 | }; | 37 | }; |
34 | 38 | ||