diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-07-10 14:11:36 +0200 |
---|---|---|
committer | Dave Airlie <airlied@gmail.com> | 2013-07-23 11:20:19 +0200 |
commit | 3dadef6c96c8aa6e67f83b30504256a0605ee4d6 (patch) | |
tree | d2b35caff6a606675b411d33e040b5e0326b5aed /drivers/gpu/drm/drm_context.c | |
parent | drm: remove drm_modctx ioctl and use drm_noop instead (diff) | |
download | linux-3dadef6c96c8aa6e67f83b30504256a0605ee4d6.tar.xz linux-3dadef6c96c8aa6e67f83b30504256a0605ee4d6.zip |
drm: kill dev->context_wait
No one ever waits on this waitqueue, so the wake_up call is wasted.
Remove it all.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/drm_context.c')
-rw-r--r-- | drivers/gpu/drm/drm_context.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_context.c b/drivers/gpu/drm/drm_context.c index 6f9731ff6a5b..5cc17f32eb79 100644 --- a/drivers/gpu/drm/drm_context.c +++ b/drivers/gpu/drm/drm_context.c @@ -261,7 +261,6 @@ static int drm_context_switch_complete(struct drm_device *dev, when the kernel holds the lock, release that lock here. */ clear_bit(0, &dev->context_flag); - wake_up(&dev->context_wait); return 0; } |