]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/imx-common/mx5_video.h
Merge 'u-boot-atmel/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / include / asm / imx-common / mx5_video.h
1 /*
2  * Copyright (C) 2012
3  * Anatolij Gustschin, DENX Software Engineering, <agust@denx.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of
8  * the License, or (at your option) any later version.
9  */
10 #ifndef __MX5_VIDEO_H
11 #define __MX5_VIDEO_H
12
13 #ifdef CONFIG_VIDEO
14 void lcd_enable(void);
15 void setup_iomux_lcd(void);
16 #else
17 static inline void lcd_enable(void) { }
18 static inline void setup_iomux_lcd(void) { }
19 #endif
20
21 #endif