linux/drivers/gpu/drm/xilinx/xilinx_drm_encoder.h
<<
>>
Prefs
   1/*
   2 * Xilinx DRM encoder header for Xilinx
   3 *
   4 *  Copyright (C) 2013 Xilinx, Inc.
   5 *
   6 *  Author: Hyun Woo Kwon <hyunk@xilinx.com>
   7 *
   8 * This software is licensed under the terms of the GNU General Public
   9 * License version 2, as published by the Free Software Foundation, and
  10 * may be copied, distributed, and modified under those terms.
  11 *
  12 * This program is distributed in the hope that it will be useful,
  13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15 * GNU General Public License for more details.
  16 */
  17
  18#ifndef _XILINX_DRM_ENCODER_H_
  19#define _XILINX_DRM_ENCODER_H_
  20
  21struct drm_device;
  22struct drm_encoder;
  23
  24struct drm_encoder *xilinx_drm_encoder_create(struct drm_device *drm,
  25                                              struct device_node *node);
  26void xilinx_drm_encoder_destroy(struct drm_encoder *base_encoder);
  27
  28#endif /* _XILINX_DRM_ENCODER_H_ */
  29