diff options
| -rw-r--r-- | arch/arm/mach-ep93xx/core.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index de53f0be71b9..48345fb34613 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <linux/serial_core.h> | 26 | #include <linux/serial_core.h> |
| 27 | #include <linux/device.h> | 27 | #include <linux/device.h> |
| 28 | #include <linux/mm.h> | 28 | #include <linux/mm.h> |
| 29 | #include <linux/dma-mapping.h> | ||
| 29 | #include <linux/time.h> | 30 | #include <linux/time.h> |
| 30 | #include <linux/timex.h> | 31 | #include <linux/timex.h> |
| 31 | #include <linux/delay.h> | 32 | #include <linux/delay.h> |
| @@ -449,12 +450,13 @@ static struct resource ep93xx_ohci_resources[] = { | |||
| 449 | }, | 450 | }, |
| 450 | }; | 451 | }; |
| 451 | 452 | ||
| 453 | |||
| 452 | static struct platform_device ep93xx_ohci_device = { | 454 | static struct platform_device ep93xx_ohci_device = { |
| 453 | .name = "ep93xx-ohci", | 455 | .name = "ep93xx-ohci", |
| 454 | .id = -1, | 456 | .id = -1, |
| 455 | .dev = { | 457 | .dev = { |
| 456 | .dma_mask = (void *)0xffffffff, | 458 | .dma_mask = &ep93xx_ohci_device.dev.coherent_dma_mask, |
| 457 | .coherent_dma_mask = 0xffffffff, | 459 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 458 | }, | 460 | }, |
| 459 | .num_resources = ARRAY_SIZE(ep93xx_ohci_resources), | 461 | .num_resources = ARRAY_SIZE(ep93xx_ohci_resources), |
| 460 | .resource = ep93xx_ohci_resources, | 462 | .resource = ep93xx_ohci_resources, |
