root/drivers/gpu/drm/xen/xen_drm_front_conn.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
   2 
   3 /*
   4  *  Xen para-virtual DRM device
   5  *
   6  * Copyright (C) 2016-2018 EPAM Systems Inc.
   7  *
   8  * Author: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
   9  */
  10 
  11 #ifndef __XEN_DRM_FRONT_CONN_H_
  12 #define __XEN_DRM_FRONT_CONN_H_
  13 
  14 #include <linux/types.h>
  15 
  16 struct drm_connector;
  17 struct xen_drm_front_drm_info;
  18 
  19 struct xen_drm_front_drm_info;
  20 
  21 int xen_drm_front_conn_init(struct xen_drm_front_drm_info *drm_info,
  22                             struct drm_connector *connector);
  23 
  24 const u32 *xen_drm_front_conn_get_formats(int *format_count);
  25 
  26 #endif /* __XEN_DRM_FRONT_CONN_H_ */

/* [<][>][^][v][top][bottom][index][help] */