blob: ccaf010b7821224c559788eccd264a15037d73b1 [file] [log] [blame]
Vikram Narayanan9ddfa242012-11-10 02:28:52 +00001/*
2 * Copyright (C) 2012
3 * Anatolij Gustschin, DENX Software Engineering, <agust@denx.de>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Vikram Narayanan9ddfa242012-11-10 02:28:52 +00006 */
7#ifndef __MX5_VIDEO_H
8#define __MX5_VIDEO_H
9
10#ifdef CONFIG_VIDEO
11void lcd_enable(void);
12void setup_iomux_lcd(void);
13#else
14static inline void lcd_enable(void) { }
15static inline void setup_iomux_lcd(void) { }
16#endif
17
18#endif