1 /* exynos_drm_vidi.h
2  *
3  * Copyright (c) 2012 Samsung Electronics Co., Ltd.
4  * Author: Inki Dae <inki.dae@samsung.com>
5  *
6  * This program is free software; you can redistribute  it and/or modify it
7  * under  the terms of  the GNU General  Public License as published by the
8  * Free Software Foundation;  either version 2 of the  License, or (at your
9  * option) any later version.
10  */
11 
12 #ifndef _EXYNOS_DRM_VIDI_H_
13 #define _EXYNOS_DRM_VIDI_H_
14 
15 #ifdef CONFIG_DRM_EXYNOS_VIDI
16 int vidi_connection_ioctl(struct drm_device *drm_dev, void *data,
17 				struct drm_file *file_priv);
18 #else
19 #define vidi_connection_ioctl	NULL
20 #endif
21 
22 #endif
23