arch/avr32: Fix build failure for avr32 caused by typo

This patch fixes a build failure introduced by the patch
atmel-mci: change use of dma slave interface by Nicolas Ferre
by changing mci_dma_slave to the correct name of mci_dma_data

This should make the avr32 tree build again.

References:
http://kisskb.ellerman.id.au/kisskb/buildresult/1893610/
http://git.kernel.org/?p=linux/kernel/git/sfr/linux-next.git;a=commitdiff;h=2635d1ba711560d521f6218c585a3e0401f566e1

Patch against Linus' tree.

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>

authored by Peter Huewe and committed by Haavard Skinnemoen 754a00ae 6b7b2849

+2 -2
+2 -2
arch/avr32/mach-at32ap/at32ap700x.c
··· 1325 1325 at32_add_device_mci(unsigned int id, struct mci_platform_data *data) 1326 1326 { 1327 1327 struct platform_device *pdev; 1328 - struct mci_dma_slave *slave; 1328 + struct mci_dma_data *slave; 1329 1329 u32 pioa_mask; 1330 1330 u32 piob_mask; 1331 1331 ··· 1344 1344 ARRAY_SIZE(atmel_mci0_resource))) 1345 1345 goto fail; 1346 1346 1347 - slave = kzalloc(sizeof(struct mci_dma_slave), GFP_KERNEL); 1347 + slave = kzalloc(sizeof(struct mci_dma_data), GFP_KERNEL); 1348 1348 1349 1349 slave->sdata.dma_dev = &dw_dmac0_device.dev; 1350 1350 slave->sdata.reg_width = DW_DMA_SLAVE_WIDTH_32BIT;