summaryrefslogtreecommitdiff
path: root/shared/sis_drm.h
diff options
context:
space:
mode:
authorAdam Jackson <ajax@theobromine.nwnk.net>2006-07-19 16:19:25 -0400
committerAdam Jackson <ajax@theobromine.nwnk.net>2006-07-19 16:19:25 -0400
commit6677e2a10b820a5ccfd375cc627b8e41453a71da (patch)
tree2f7f388e3450f644d84f2ef4c083314aeb57e886 /shared/sis_drm.h
parentaf7b89d7246efbed7d05c38fcaa6a13c4b89db90 (diff)
Delete the pre-core DRM code with extreme prejudice.
Diffstat (limited to 'shared/sis_drm.h')
-rw-r--r--shared/sis_drm.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/shared/sis_drm.h b/shared/sis_drm.h
deleted file mode 100644
index 49505719..00000000
--- a/shared/sis_drm.h
+++ /dev/null
@@ -1,33 +0,0 @@
-
-#ifndef __SIS_DRM_H__
-#define __SIS_DRM_H__
-
-/* SiS specific ioctls */
-#define DRM_IOCTL_SIS_FB_ALLOC DRM_IOWR(0x44, drm_sis_mem_t)
-#define DRM_IOCTL_SIS_FB_FREE DRM_IOW( 0x45, drm_sis_mem_t)
-#define DRM_IOCTL_SIS_AGP_INIT DRM_IOWR(0x53, drm_sis_agp_t)
-#define DRM_IOCTL_SIS_AGP_ALLOC DRM_IOWR(0x54, drm_sis_mem_t)
-#define DRM_IOCTL_SIS_AGP_FREE DRM_IOW( 0x55, drm_sis_mem_t)
-#define DRM_IOCTL_SIS_FB_INIT DRM_IOW( 0x56, drm_sis_fb_t)
-/*
-#define DRM_IOCTL_SIS_FLIP DRM_IOW( 0x48, drm_sis_flip_t)
-#define DRM_IOCTL_SIS_FLIP_INIT DRM_IO( 0x49)
-#define DRM_IOCTL_SIS_FLIP_FINAL DRM_IO( 0x50)
-*/
-
-typedef struct {
- int context;
- unsigned int offset;
- unsigned int size;
- unsigned long free;
-} drm_sis_mem_t;
-
-typedef struct {
- unsigned int offset, size;
-} drm_sis_agp_t;
-
-typedef struct {
- unsigned int offset, size;
-} drm_sis_fb_t;
-
-#endif /* __SIS_DRM_H__ */