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 19