Commit 3f5ba55e authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAP: FB: use DMA_BIT_MASK() for fb's coherent_dma_mask

Use DMA_BIT_MASK() for fb's coherent_dma_mask for clarity.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: default avatarTony Lindgren <tony@atomide.com>
parent 3d70f8c6
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include <linux/memblock.h> #include <linux/memblock.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/omapfb.h> #include <linux/omapfb.h>
#include <linux/dma-mapping.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <asm/mach/map.h> #include <asm/mach/map.h>
...@@ -45,7 +46,7 @@ static struct platform_device omap_fb_device = { ...@@ -45,7 +46,7 @@ static struct platform_device omap_fb_device = {
.id = -1, .id = -1,
.dev = { .dev = {
.dma_mask = &omap_fb_dma_mask, .dma_mask = &omap_fb_dma_mask,
.coherent_dma_mask = ~(u32)0, .coherent_dma_mask = DMA_BIT_MASK(32),
.platform_data = &omapfb_config, .platform_data = &omapfb_config,
}, },
.num_resources = 0, .num_resources = 0,
...@@ -81,7 +82,7 @@ static struct platform_device omap_fb_device = { ...@@ -81,7 +82,7 @@ static struct platform_device omap_fb_device = {
.id = -1, .id = -1,
.dev = { .dev = {
.dma_mask = &omap_fb_dma_mask, .dma_mask = &omap_fb_dma_mask,
.coherent_dma_mask = ~(u32)0, .coherent_dma_mask = DMA_BIT_MASK(32),
.platform_data = &omapfb_config, .platform_data = &omapfb_config,
}, },
.num_resources = 0, .num_resources = 0,
......
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