Deleted Added
full compact
drmP.h (189130) drmP.h (189563)
1/* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*-
2 * Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com
3 */
4/*-
5 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
6 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
7 * All rights reserved.
8 *

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

27 *
28 * Authors:
29 * Rickard E. (Rik) Faith <faith@valinux.com>
30 * Gareth Hughes <gareth@valinux.com>
31 *
32 */
33
34#include <sys/cdefs.h>
1/* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*-
2 * Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com
3 */
4/*-
5 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
6 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
7 * All rights reserved.
8 *

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

27 *
28 * Authors:
29 * Rickard E. (Rik) Faith <faith@valinux.com>
30 * Gareth Hughes <gareth@valinux.com>
31 *
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/dev/drm/drmP.h 189130 2009-02-28 02:37:55Z rnoland $");
35__FBSDID("$FreeBSD: head/sys/dev/drm/drmP.h 189563 2009-03-09 07:55:18Z rnoland $");
36
37#ifndef _DRM_P_H_
38#define _DRM_P_H_
39
40#if defined(_KERNEL) || defined(__KERNEL__)
41
42struct drm_device;
43struct drm_file;

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

715}
716#else
717#define drm_core_has_AGP(dev) (0)
718#endif
719
720extern int drm_debug_flag;
721
722/* Device setup support (drm_drv.c) */
36
37#ifndef _DRM_P_H_
38#define _DRM_P_H_
39
40#if defined(_KERNEL) || defined(__KERNEL__)
41
42struct drm_device;
43struct drm_file;

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

715}
716#else
717#define drm_core_has_AGP(dev) (0)
718#endif
719
720extern int drm_debug_flag;
721
722/* Device setup support (drm_drv.c) */
723int drm_probe(device_t nbdev, drm_pci_id_list_t *idlist);
724int drm_attach(device_t nbdev, drm_pci_id_list_t *idlist);
723int drm_probe(device_t kdev, drm_pci_id_list_t *idlist);
724int drm_attach(device_t kdev, drm_pci_id_list_t *idlist);
725void drm_close(void *data);
725void drm_close(void *data);
726int drm_detach(device_t nbdev);
726int drm_detach(device_t kdev);
727d_ioctl_t drm_ioctl;
728d_open_t drm_open;
729d_read_t drm_read;
730d_poll_t drm_poll;
731d_mmap_t drm_mmap;
732extern drm_local_map_t *drm_getsarea(struct drm_device *dev);
733
734/* File operations helpers (drm_fops.c) */

--- 282 unchanged lines hidden ---
727d_ioctl_t drm_ioctl;
728d_open_t drm_open;
729d_read_t drm_read;
730d_poll_t drm_poll;
731d_mmap_t drm_mmap;
732extern drm_local_map_t *drm_getsarea(struct drm_device *dev);
733
734/* File operations helpers (drm_fops.c) */

--- 282 unchanged lines hidden ---