linux/drivers/gpu/drm/xilinx/xilinx_drm_gem.h
<<
>>
Prefs
   1/*
   2 * Xilinx DRM KMS GEM helper header
   3 *
   4 *  Copyright (C) 2015 Xilinx, Inc.
   5 *
   6 *  Author: Hyun Woo Kwon <hyun.kwon@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_GEM_H_
  19#define _XILINX_DRM_GEM_H_
  20
  21int xilinx_drm_gem_cma_dumb_create(struct drm_file *file_priv,
  22                                   struct drm_device *drm,
  23                                   struct drm_mode_create_dumb *args);
  24
  25#endif /* _XILINX_DRM_GEM_H_ */
  26