Commit 2aa63ce0 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc

Pull ARM SoC fixes from Olof Johansson:
 "A few fixes for Renesas platforms to fixup DMA masks (this started
  causing errors once the DMA API added checks for valid masks in 3.13)"

* tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
  ARM: shmobile: mackerel: Fix coherent DMA mask
  ARM: shmobile: kzm9g: Fix coherent DMA mask
  ARM: shmobile: armadillo: Fix coherent DMA mask
parents 7d1c153a 7c06abcb
...@@ -483,7 +483,7 @@ static struct platform_device lcdc0_device = { ...@@ -483,7 +483,7 @@ static struct platform_device lcdc0_device = {
.id = 0, .id = 0,
.dev = { .dev = {
.platform_data = &lcdc0_info, .platform_data = &lcdc0_info,
.coherent_dma_mask = ~0, .coherent_dma_mask = DMA_BIT_MASK(32),
}, },
}; };
...@@ -580,7 +580,7 @@ static struct platform_device hdmi_lcdc_device = { ...@@ -580,7 +580,7 @@ static struct platform_device hdmi_lcdc_device = {
.id = 1, .id = 1,
.dev = { .dev = {
.platform_data = &hdmi_lcdc_info, .platform_data = &hdmi_lcdc_info,
.coherent_dma_mask = ~0, .coherent_dma_mask = DMA_BIT_MASK(32),
}, },
}; };
......
...@@ -334,7 +334,7 @@ static struct platform_device lcdc_device = { ...@@ -334,7 +334,7 @@ static struct platform_device lcdc_device = {
.resource = lcdc_resources, .resource = lcdc_resources,
.dev = { .dev = {
.platform_data = &lcdc_info, .platform_data = &lcdc_info,
.coherent_dma_mask = ~0, .coherent_dma_mask = DMA_BIT_MASK(32),
}, },
}; };
......
...@@ -409,7 +409,7 @@ static struct platform_device lcdc_device = { ...@@ -409,7 +409,7 @@ static struct platform_device lcdc_device = {
.resource = lcdc_resources, .resource = lcdc_resources,
.dev = { .dev = {
.platform_data = &lcdc_info, .platform_data = &lcdc_info,
.coherent_dma_mask = ~0, .coherent_dma_mask = DMA_BIT_MASK(32),
}, },
}; };
...@@ -499,7 +499,7 @@ static struct platform_device hdmi_lcdc_device = { ...@@ -499,7 +499,7 @@ static struct platform_device hdmi_lcdc_device = {
.id = 1, .id = 1,
.dev = { .dev = {
.platform_data = &hdmi_lcdc_info, .platform_data = &hdmi_lcdc_info,
.coherent_dma_mask = ~0, .coherent_dma_mask = DMA_BIT_MASK(32),
}, },
}; };
......
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