blob: e54c25a560aab40d676e6e2d4557d2a1ff31090a [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 *
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
14void lcd_enable(void);
15void setup_iomux_lcd(void);
16#else
17static inline void lcd_enable(void) { }
18static inline void setup_iomux_lcd(void) { }
19#endif
20
21#endif