summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/nouveau/core/subdev/mc/base.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2013-11-06 07:48:16 +0400
committerDave Airlie <airlied@redhat.com>2013-11-06 07:50:16 +0400
commit33e3fd5567a8e04154f2a4b8978fb0f65f25224d (patch)
treee4cecab6a8b254e8b685117544c67cf327419b9c /drivers/gpu/drm/nouveau/core/subdev/mc/base.c
parentab13096122903ed9f1b2028674256774b0ce6b59 (diff)
downloadlinux-33e3fd5567a8e04154f2a4b8978fb0f65f25224d.tar.xz
nouveau: drop interrupt busy setting.
This causes problems with never going busy due to ptherm polling, and after talking to Ben I can't see it being required. Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/core/subdev/mc/base.c')
-rw-r--r--drivers/gpu/drm/nouveau/core/subdev/mc/base.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/core/subdev/mc/base.c b/drivers/gpu/drm/nouveau/core/subdev/mc/base.c
index 37712a6df923..d8bb48f54c16 100644
--- a/drivers/gpu/drm/nouveau/core/subdev/mc/base.c
+++ b/drivers/gpu/drm/nouveau/core/subdev/mc/base.c
@@ -30,7 +30,6 @@ nouveau_mc_intr(int irq, void *arg)
{
struct nouveau_mc *pmc = arg;
const struct nouveau_mc_intr *map = pmc->intr_map;
- struct nouveau_device *device = nv_device(pmc);
struct nouveau_subdev *unit;
u32 stat, intr;
@@ -54,8 +53,6 @@ nouveau_mc_intr(int irq, void *arg)
nv_error(pmc, "unknown intr 0x%08x\n", stat);
}
- if (stat == IRQ_HANDLED)
- pm_runtime_mark_last_busy(&device->pdev->dev);
return stat ? IRQ_HANDLED : IRQ_NONE;
}