search for: 48ad4be

Displaying 1 result from an estimated 1 matches for "48ad4be".

2017 Jan 20
0
[PATCH] nv1a,nv1f/disp: fix memory clock rate retrieval
...stantially, but does not fix the problems entirely. I'm guessing there's more, but this is pretty easy to compare with the old logic. drm/nouveau/dispnv04/hw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drm/nouveau/dispnv04/hw.c b/drm/nouveau/dispnv04/hw.c index 48ad4be..b985990 100644 --- a/drm/nouveau/dispnv04/hw.c +++ b/drm/nouveau/dispnv04/hw.c @@ -222,6 +222,7 @@ nouveau_hw_get_clock(struct drm_device *dev, enum nvbios_pll_type plltype) uint32_t mpllP; pci_read_config_dword(pci_get_bus_and_slot(0, 3), 0x6c, &mpllP); + mpllP = (mpllP >> 8) &...