1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2012 4 * Anatolij Gustschin, DENX Software Engineering, <agust@denx.de> 5 */ 6 #ifndef __MX5_VIDEO_H 7 #define __MX5_VIDEO_H 8 9 #ifdef CONFIG_VIDEO 10 void lcd_enable(void); 11 void setup_iomux_lcd(void); 12 #else 13 static inline void lcd_enable(void) { } 14 static inline void setup_iomux_lcd(void) { } 15 #endif 16 17 #endif 18