diff options
author | Tom Rini <trini@ti.com> | 2012-11-19 09:28:04 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-11-19 09:28:04 -0700 |
commit | 178d0cc1a4c73c3341afbeb2a93b172de8c96bd1 (patch) | |
tree | f4ccb38889b6ae9d2092b8ce43b8f6d422c900cb /arch/arm | |
parent | bb367b95f9204115bd6eac82e839b5590e6da4eb (diff) | |
parent | 30ea4be921634de193236355f76e7870f1a3cb89 (diff) | |
download | u-boot-imx-178d0cc1a4c73c3341afbeb2a93b172de8c96bd1.zip u-boot-imx-178d0cc1a4c73c3341afbeb2a93b172de8c96bd1.tar.gz u-boot-imx-178d0cc1a4c73c3341afbeb2a93b172de8c96bd1.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-video
Diffstat (limited to 'arch/arm')
-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 |