diff options
author | Vikram Narayanan <vikram186@gmail.com> | 2012-11-10 02:28:52 +0000 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2012-11-14 14:05:35 +0100 |
commit | 5d71bd210ff3ab5b510071cae7ed1ea51ba9e0ca (patch) | |
tree | cb032edb25c7c35d250572213e0b7d974c2dc7b2 /arch/arm/include/asm | |
parent | 4a1921eb04fa83acbab60fc0219e48e85dbc2f74 (diff) | |
download | u-boot-imx-5d71bd210ff3ab5b510071cae7ed1ea51ba9e0ca.zip u-boot-imx-5d71bd210ff3ab5b510071cae7ed1ea51ba9e0ca.tar.gz u-boot-imx-5d71bd210ff3ab5b510071cae7ed1ea51ba9e0ca.tar.bz2 |
mx51evk: Fix build error when CONFIG_VIDEO is disabled
The inclusion of LCD patch into mx51evk breaks the build when
CONFIG_VIDEO is disabled. Fix this by splitting the video related
stuff to a new file.
Also rename the function lcd_iomux to setup_iomux_lcd to make the
namings aligned with the other iomux functions.
Signed-off-by: Vikram Narayanan <vikram186@gmail.com>
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/imx-common/mx5_video.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/arm/include/asm/imx-common/mx5_video.h b/arch/arm/include/asm/imx-common/mx5_video.h new file mode 100644 index 0000000..e54c25a --- /dev/null +++ b/arch/arm/include/asm/imx-common/mx5_video.h @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2012 + * Anatolij Gustschin, DENX Software Engineering, <agust@denx.de> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + */ +#ifndef __MX5_VIDEO_H +#define __MX5_VIDEO_H + +#ifdef CONFIG_VIDEO +void lcd_enable(void); +void setup_iomux_lcd(void); +#else +static inline void lcd_enable(void) { } +static inline void setup_iomux_lcd(void) { } +#endif + +#endif |