diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2011-02-03 13:06:14 +0300 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-02-24 23:44:59 +0300 |
commit | f13e435c59573aa0ac398210777cc0406c476593 (patch) | |
tree | e3426e7fab3016eb8ec9b34bb793854b3dbc24dd /drivers/gpu/drm/nouveau/nouveau_drv.h | |
parent | c7ca4d1b6b529dac9de9ff3f951689f2e4365cc2 (diff) | |
download | linux-f13e435c59573aa0ac398210777cc0406c476593.tar.xz |
drm/nv50-nvc0: switch to tasklet for display isr bh
We need to be able to have the bh run while possibly spinning waiting for
the EVO notifier to signal. This apparently happens in some circumstances
with preempt disabled, so our workqueue was never being run.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_drv.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index da426b95cc82..8f6491845692 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -653,7 +653,6 @@ struct drm_nouveau_private { /* interrupt handling */ void (*irq_handler[32])(struct drm_device *); bool msi_enabled; - struct work_struct irq_work; struct list_head vbl_waiting; |