https://bugs.freedesktop.org/show_bug.cgi?id=92870

--- Comment #1 from Ilia Mirkin <[email protected]> ---
Interesting. The v4.3 kernel has:

void
nvkm_pmu_pgob(struct nvkm_pmu *pmu, bool enable)
{
        if (pmu->func->pgob)
                pmu->func->pgob(pmu, enable);
}

But Ben's latest upstream has:

void
nvkm_pmu_pgob(struct nvkm_pmu *pmu, bool enable)
{
        if (pmu && pmu->func->pgob)
                pmu->func->pgob(pmu, enable);
}

And indeed it looks like the GF117 is missing a PMU definition. I have no idea
why that'd be the case, but it was that way before the rewrite as well. The
simplest thing is to fix up that function as above, but I think we may also
want to enable the PMU on GF117.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Nouveau mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/nouveau

Reply via email to