exynos_drm_vidi.h 627 B

12345678910111213141516171819202122
  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. #ifndef _EXYNOS_DRM_VIDI_H_
  12. #define _EXYNOS_DRM_VIDI_H_
  13. #ifdef CONFIG_DRM_EXYNOS_VIDI
  14. int vidi_connection_ioctl(struct drm_device *drm_dev, void *data,
  15. struct drm_file *file_priv);
  16. #else
  17. #define vidi_connection_ioctl NULL
  18. #endif
  19. #endif