ARM: mach-imx: sdhci-esdhc-imx: initialize DMA mask
authorAlexander Kurz <akurz@blala.de>
Mon, 11 Apr 2016 08:20:46 +0000 (10:20 +0200)
committerShawn Guo <shawnguo@kernel.org>
Wed, 13 Apr 2016 08:41:56 +0000 (16:41 +0800)
With commit 7b91369b4655 ("mmc: sdhci: Set DMA mask when adding host")
DMA access got disabled for device drivers with zero DMA mask property.
sdhci-esdhc-imx got blocked from DMA access by this.  Hence: initialize
the DMA mask to enable access again.

Signed-off-by: Alexander Kurz <akurz@blala.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/mach-imx/devices/platform-sdhci-esdhc-imx.c

index a5edd7d..3d039ef 100644 (file)
@@ -71,6 +71,7 @@ struct platform_device *__init imx_add_sdhci_esdhc_imx(
        if (!pdata)
                pdata = &default_esdhc_pdata;
 
-       return imx_add_platform_device(data->devid, data->id, res,
-                       ARRAY_SIZE(res), pdata, sizeof(*pdata));
+       return imx_add_platform_device_dmamask(data->devid, data->id, res,
+                       ARRAY_SIZE(res), pdata, sizeof(*pdata),
+                       DMA_BIT_MASK(32));
 }