summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubash Patel <subash.rp@samsung.com>2012-12-05 10:30:48 +0530
committerTushar Behera <tushar.behera@linaro.org>2013-01-22 11:41:35 +0530
commitc95b91019e69fce4f4f385c23bdd01ceb165b17d (patch)
tree0b14d0b52feffdec35e0e7859d3e4c12bc324d68
parentf549f0639b2361ad50dd45bec7fae051e51e7dbd (diff)
downloadlinux-topics-c95b91019e69fce4f4f385c23bdd01ceb165b17d.tar.gz
ARM: exynos: update coherent dma mask
This patch updates the coherent_dma_mask for dev-ohci Signed-off-by: Subash Patel <subash.rp@samsung.com>
-rw-r--r--arch/arm/mach-exynos/dev-ohci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-exynos/dev-ohci.c b/arch/arm/mach-exynos/dev-ohci.c
index 4244d02dafb..3a9c6719e80 100644
--- a/arch/arm/mach-exynos/dev-ohci.c
+++ b/arch/arm/mach-exynos/dev-ohci.c
@@ -25,7 +25,7 @@ static struct resource exynos4_ohci_resource[] = {
[1] = DEFINE_RES_IRQ(IRQ_USB_HOST),
};
-static u64 exynos4_ohci_dma_mask = DMA_BIT_MASK(32);
+static u64 exynos4_ohci_dma_mask = DMA_BIT_MASK(64);
struct platform_device exynos4_device_ohci = {
.name = "exynos-ohci",
@@ -34,7 +34,7 @@ struct platform_device exynos4_device_ohci = {
.resource = exynos4_ohci_resource,
.dev = {
.dma_mask = &exynos4_ohci_dma_mask,
- .coherent_dma_mask = DMA_BIT_MASK(32),
+ .coherent_dma_mask = DMA_BIT_MASK(64),
}
};