Displaying 1 result from an estimated 1 matches for "fd181fb".
Did you mean:
bd1812b
2012 Oct 07
1
[PATCH] drm/nv50: wire up pll_calc hook
...code does not set this hook either,
but there's no existing function to wire up...
---
drivers/gpu/drm/nouveau/core/subdev/clock/nv50.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/nouveau/core/subdev/clock/nv50.c b/drivers/gpu/drm/nouveau/core/subdev/clock/nv50.c
index fd181fb..f4147f6 100644
--- a/drivers/gpu/drm/nouveau/core/subdev/clock/nv50.c
+++ b/drivers/gpu/drm/nouveau/core/subdev/clock/nv50.c
@@ -90,6 +90,7 @@ nv50_clock_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
return ret;
priv->base.pll_set = nv50_clock_pll_set;
+ priv->bas...