Commit cfc2f263 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/mc: msi rearm write via subdev, not device

This way we can catch it with debugging on for PMC subdev.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent dd5b84ac
...@@ -47,7 +47,7 @@ nouveau_mc_intr(int irq, void *arg) ...@@ -47,7 +47,7 @@ nouveau_mc_intr(int irq, void *arg)
} }
if (pmc->use_msi) if (pmc->use_msi)
nv_wr08(pmc->base.base.parent, 0x00088068, 0xff); nv_wr08(pmc, 0x088068, 0xff);
if (intr) { if (intr) {
nv_error(pmc, "unknown intr 0x%08x\n", stat); nv_error(pmc, "unknown intr 0x%08x\n", stat);
...@@ -115,7 +115,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine, ...@@ -115,7 +115,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
pmc->use_msi = pci_enable_msi(device->pdev) == 0; pmc->use_msi = pci_enable_msi(device->pdev) == 0;
if (pmc->use_msi) { if (pmc->use_msi) {
nv_info(pmc, "MSI interrupts enabled\n"); nv_info(pmc, "MSI interrupts enabled\n");
nv_wr08(device, 0x00088068, 0xff); nv_wr08(pmc, 0x088068, 0xff);
} }
} }
break; break;
......
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