ARM: mach-shmobile: add coherent DMA mask to CEU camera devices

Cameras are currently broken on ARM sh-mobile platforms. They need a
suitable coherent DMA mask.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>

authored by Guennadi Liakhovetski and committed by Paul Mundt 05a5f01c 1fbdfcde

+4 -2
+2 -1
arch/arm/mach-shmobile/board-ap4evb.c
··· 923 923 .num_resources = ARRAY_SIZE(ceu_resources), 924 924 .resource = ceu_resources, 925 925 .dev = { 926 - .platform_data = &sh_mobile_ceu_info, 926 + .platform_data = &sh_mobile_ceu_info, 927 + .coherent_dma_mask = 0xffffffff, 927 928 }, 928 929 }; 929 930
+2 -1
arch/arm/mach-shmobile/board-mackerel.c
··· 921 921 .num_resources = ARRAY_SIZE(ceu_resources), 922 922 .resource = ceu_resources, 923 923 .dev = { 924 - .platform_data = &sh_mobile_ceu_info, 924 + .platform_data = &sh_mobile_ceu_info, 925 + .coherent_dma_mask = 0xffffffff, 925 926 }, 926 927 }; 927 928