diff options
Diffstat (limited to 'arch/arm/mach-ep93xx')
-rw-r--r-- | arch/arm/mach-ep93xx/core.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c index a6b3fb20877..b80d9670cdd 100644 --- a/arch/arm/mach-ep93xx/core.c +++ b/arch/arm/mach-ep93xx/core.c | |||
@@ -416,11 +416,15 @@ static struct resource ep93xx_eth_resource[] = { | |||
416 | } | 416 | } |
417 | }; | 417 | }; |
418 | 418 | ||
419 | static u64 ep93xx_eth_dma_mask = DMA_BIT_MASK(32); | ||
420 | |||
419 | static struct platform_device ep93xx_eth_device = { | 421 | static struct platform_device ep93xx_eth_device = { |
420 | .name = "ep93xx-eth", | 422 | .name = "ep93xx-eth", |
421 | .id = -1, | 423 | .id = -1, |
422 | .dev = { | 424 | .dev = { |
423 | .platform_data = &ep93xx_eth_data, | 425 | .platform_data = &ep93xx_eth_data, |
426 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
427 | .dma_mask = &ep93xx_eth_dma_mask, | ||
424 | }, | 428 | }, |
425 | .num_resources = ARRAY_SIZE(ep93xx_eth_resource), | 429 | .num_resources = ARRAY_SIZE(ep93xx_eth_resource), |
426 | .resource = ep93xx_eth_resource, | 430 | .resource = ep93xx_eth_resource, |