Commit 63890a0e authored by Matthias Kaehlcke's avatar Matthias Kaehlcke Committed by Russell King

[ARM] ep93xx: fix OHCI DMA mask

Signed-off-by: default avatarMatthias Kaehlcke <matthias@kaehlcke.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 05cd2544
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <linux/serial_core.h> #include <linux/serial_core.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/dma-mapping.h>
#include <linux/time.h> #include <linux/time.h>
#include <linux/timex.h> #include <linux/timex.h>
#include <linux/delay.h> #include <linux/delay.h>
...@@ -449,12 +450,13 @@ static struct resource ep93xx_ohci_resources[] = { ...@@ -449,12 +450,13 @@ static struct resource ep93xx_ohci_resources[] = {
}, },
}; };
static struct platform_device ep93xx_ohci_device = { static struct platform_device ep93xx_ohci_device = {
.name = "ep93xx-ohci", .name = "ep93xx-ohci",
.id = -1, .id = -1,
.dev = { .dev = {
.dma_mask = (void *)0xffffffff, .dma_mask = &ep93xx_ohci_device.dev.coherent_dma_mask,
.coherent_dma_mask = 0xffffffff, .coherent_dma_mask = DMA_BIT_MASK(32),
}, },
.num_resources = ARRAY_SIZE(ep93xx_ohci_resources), .num_resources = ARRAY_SIZE(ep93xx_ohci_resources),
.resource = ep93xx_ohci_resources, .resource = ep93xx_ohci_resources,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment