diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-01-17 08:02:53 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-01-18 13:53:52 +0900 |
commit | 92359a705c8e6e8206d044868e0f860b7e90f109 (patch) | |
tree | 128708951f99ebbecef7c2bffe3ba98780d0408c /arch/sh | |
parent | 50cfa79dcb91a7c40038b7a13b7e2242b541242f (diff) | |
download | linux-3.10-92359a705c8e6e8206d044868e0f860b7e90f109.tar.gz linux-3.10-92359a705c8e6e8206d044868e0f860b7e90f109.tar.bz2 linux-3.10-92359a705c8e6e8206d044868e0f860b7e90f109.zip |
sh: fix MSIOF0 SPI on ecovec: it conflicts with VOU
MSIOF0 and VOU share pins on sh7724, make MSIOF0 available again, as long as
VOU is not configured.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/mach-ecovec24/setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c index 33b662999fc..701667acfd8 100644 --- a/arch/sh/boards/mach-ecovec24/setup.c +++ b/arch/sh/boards/mach-ecovec24/setup.c @@ -1294,6 +1294,7 @@ static int __init arch_setup(void) i2c_register_board_info(1, i2c1_devices, ARRAY_SIZE(i2c1_devices)); +#if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE) /* VOU */ gpio_request(GPIO_FN_DV_D15, NULL); gpio_request(GPIO_FN_DV_D14, NULL); @@ -1325,6 +1326,7 @@ static int __init arch_setup(void) /* Remove reset */ gpio_set_value(GPIO_PTG4, 1); +#endif return platform_add_devices(ecovec_devices, ARRAY_SIZE(ecovec_devices)); |