diff options
author | Ben Skeggs <[email protected]> | 2020-06-21 17:40:51 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2020-07-24 18:51:01 +1000 |
commit | ca31b0c01a2759d5ac40695e51287962e08826fe (patch) | |
tree | 31707591da87ade6cfeee915b5fec43f846ef55c | |
parent | 344c2e5a47960a95ef0504d8f0852005d1e199f0 (diff) |
drm/nouveau/kms/nv50-: use NVIDIA's headers for core or_get_caps()
Signed-off-by: Ben Skeggs <[email protected]>
Reviewed-by: Lyude Paul <[email protected]>
-rw-r--r-- | drivers/gpu/drm/nouveau/dispnv50/sor907d.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/dispnv50/sor907d.c b/drivers/gpu/drm/nouveau/dispnv50/sor907d.c index db09cc5af5f6..c86cd8fa61d6 100644 --- a/drivers/gpu/drm/nouveau/dispnv50/sor907d.c +++ b/drivers/gpu/drm/nouveau/dispnv50/sor907d.c @@ -45,10 +45,10 @@ sor907d_ctrl(struct nv50_core *core, int or, u32 ctrl, static void sor907d_get_caps(struct nv50_disp *disp, struct nouveau_encoder *outp, int or) { + struct nouveau_bo *bo = disp->sync; const int off = or * 2; - u32 tmp = nouveau_bo_rd32(disp->sync, 0x000014 + off); - - outp->caps.dp_interlace = !!(tmp & 0x04000000); + outp->caps.dp_interlace = + NVBO_RV32(bo, off, NV907D_CORE_NOTIFIER_3, CAPABILITIES_CAP_SOR0_20, DP_INTERLACE); } const struct nv50_outp_func |