]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/include/asm/imx-common/mx5_video.h
ccaf010b7821224c559788eccd264a15037d73b1
[people/ms/u-boot.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 * SPDX-License-Identifier: GPL-2.0+
6 */
7 #ifndef __MX5_VIDEO_H
8 #define __MX5_VIDEO_H
9
10 #ifdef CONFIG_VIDEO
11 void lcd_enable(void);
12 void setup_iomux_lcd(void);
13 #else
14 static inline void lcd_enable(void) { }
15 static inline void setup_iomux_lcd(void) { }
16 #endif
17
18 #endif