Deleted Added
full compact
drm_crtc.h (235783) drm_crtc.h (254797)
1/*
2 * Copyright �� 2006 Keith Packard
3 * Copyright �� 2007-2008 Dave Airlie
4 * Copyright �� 2007-2008 Intel Corporation
5 * Jesse Barnes <jesse.barnes@intel.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),

--- 8 unchanged lines hidden (view full) ---

17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 *
1/*
2 * Copyright �� 2006 Keith Packard
3 * Copyright �� 2007-2008 Dave Airlie
4 * Copyright �� 2007-2008 Intel Corporation
5 * Jesse Barnes <jesse.barnes@intel.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),

--- 8 unchanged lines hidden (view full) ---

17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 *
25 * $FreeBSD: head/sys/dev/drm2/drm_crtc.h 235783 2012-05-22 11:07:44Z kib $
25 * $FreeBSD: head/sys/dev/drm2/drm_crtc.h 254797 2013-08-24 16:50:47Z dumbbell $
26 */
27#ifndef __DRM_CRTC_H__
28#define __DRM_CRTC_H__
29
30#include <dev/drm2/drm_gem_names.h>
31#include <dev/drm2/drm_fourcc.h>
32
33struct drm_device;

--- 620 unchanged lines hidden (view full) ---

654
655 int num_crtc;
656 struct list_head crtc_list;
657
658 struct list_head property_list;
659
660 int min_width, min_height;
661 int max_width, max_height;
26 */
27#ifndef __DRM_CRTC_H__
28#define __DRM_CRTC_H__
29
30#include <dev/drm2/drm_gem_names.h>
31#include <dev/drm2/drm_fourcc.h>
32
33struct drm_device;

--- 620 unchanged lines hidden (view full) ---

654
655 int num_crtc;
656 struct list_head crtc_list;
657
658 struct list_head property_list;
659
660 int min_width, min_height;
661 int max_width, max_height;
662 struct drm_mode_config_funcs *funcs;
662 const struct drm_mode_config_funcs *funcs;
663 resource_size_t fb_base;
664
665 /* output poll support */
666 bool poll_enabled;
667 struct timeout_task output_poll_task;
668
669 /* pointers to standard properties */
670 struct list_head property_blob_list;

--- 265 unchanged lines hidden ---
663 resource_size_t fb_base;
664
665 /* output poll support */
666 bool poll_enabled;
667 struct timeout_task output_poll_task;
668
669 /* pointers to standard properties */
670 struct list_head property_blob_list;

--- 265 unchanged lines hidden ---