linux/drivers/gpu/drm/xylon/xylon_drv.h
<<
>>
Prefs
   1/*
   2 * Xylon DRM driver header
   3 *
   4 * Copyright (C) 2014 Xylon d.o.o.
   5 * Author: Davor Joja <davor.joja@logicbricks.com>
   6 *
   7 * Based on Xilinx DRM header.
   8 * Copyright (C) 2013 Xilinx, Inc.
   9 *
  10 * This software is licensed under the terms of the GNU General Public
  11 * License version 2, as published by the Free Software Foundation, and
  12 * may be copied, distributed, and modified under those terms.
  13 *
  14 * This program is distributed in the hope that it will be useful,
  15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17 * GNU General Public License for more details.
  18 */
  19
  20#ifndef __XYLON_DRM_DRV_H__
  21#define __XYLON_DRM_DRV_H__
  22
  23struct xylon_drm_device {
  24        struct drm_device *dev;
  25        struct drm_crtc *crtc;
  26        struct drm_encoder *encoder;
  27        struct drm_connector *connector;
  28        struct platform_device *pdev;
  29        struct xylon_drm_fb_device *fbdev;
  30};
  31
  32#endif /* __XYLON_DRM_DRV_H__ */
  33