Commit 494f38e4 authored by Daniel Vetter's avatar Daniel Vetter Committed by Dave Airlie

drm: kill dev->buf_readers and dev->buf_writers

Again totally unused, so just remove them.
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarDave Airlie <airlied@gmail.com>
parent 5379dc04
...@@ -81,8 +81,6 @@ static int drm_setup(struct drm_device * dev) ...@@ -81,8 +81,6 @@ static int drm_setup(struct drm_device * dev)
dev->if_version = 0; dev->if_version = 0;
dev->buf_async = NULL; dev->buf_async = NULL;
init_waitqueue_head(&dev->buf_readers);
init_waitqueue_head(&dev->buf_writers);
DRM_DEBUG("\n"); DRM_DEBUG("\n");
......
...@@ -1172,8 +1172,6 @@ struct drm_device { ...@@ -1172,8 +1172,6 @@ struct drm_device {
/*@} */ /*@} */
struct fasync_struct *buf_async;/**< Processes waiting for SIGIO */ struct fasync_struct *buf_async;/**< Processes waiting for SIGIO */
wait_queue_head_t buf_readers; /**< Processes waiting to read */
wait_queue_head_t buf_writers; /**< Processes waiting to ctx switch */
struct drm_agp_head *agp; /**< AGP data */ struct drm_agp_head *agp; /**< AGP data */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment