diff options
| author | Mans Rullgard <mans@mansr.com> | 2016-01-09 07:45:11 -0500 |
|---|---|---|
| committer | Hans-Christian Egtvedt <egtvedt@samfundet.no> | 2016-01-14 07:40:30 -0500 |
| commit | 238d1c6041ebcb5ce7c075b696f6cc9962991e94 (patch) | |
| tree | a61281ea931a972e71aa80bc9cc9d09c4b480d16 /include/linux | |
| parent | 74843787158e9dff249f0528e7d4806102cc2c26 (diff) | |
mmc: atmel: get rid of struct mci_dma_data
As struct mci_dma_data is now only used by AVR32, it is nothing but
pointless indirection. Replace it with struct dw_dma_slave in the
AVR32 platform code and with a void pointer elsewhere.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Acked-by: Hans-Christian Noren Egtvedt <egtvedt@samfundet.no>
Acked-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/atmel-mci.h | 2 | ||||
| -rw-r--r-- | include/linux/platform_data/mmc-atmel-mci.h | 22 |
2 files changed, 1 insertions, 23 deletions
diff --git a/include/linux/atmel-mci.h b/include/linux/atmel-mci.h index e753062b9355..42a9e1884842 100644 --- a/include/linux/atmel-mci.h +++ b/include/linux/atmel-mci.h | |||
| @@ -37,7 +37,7 @@ struct mci_slot_pdata { | |||
| 37 | * @slot: Per-slot configuration data. | 37 | * @slot: Per-slot configuration data. |
| 38 | */ | 38 | */ |
| 39 | struct mci_platform_data { | 39 | struct mci_platform_data { |
| 40 | struct mci_dma_data *dma_slave; | 40 | void *dma_slave; |
| 41 | dma_filter_fn dma_filter; | 41 | dma_filter_fn dma_filter; |
| 42 | struct mci_slot_pdata slot[ATMCI_MAX_NR_SLOTS]; | 42 | struct mci_slot_pdata slot[ATMCI_MAX_NR_SLOTS]; |
| 43 | }; | 43 | }; |
diff --git a/include/linux/platform_data/mmc-atmel-mci.h b/include/linux/platform_data/mmc-atmel-mci.h deleted file mode 100644 index 399a2d5a14bd..000000000000 --- a/include/linux/platform_data/mmc-atmel-mci.h +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 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 */ | ||
