diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2020-06-20 09:32:58 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2020-07-24 18:50:53 +1000 |
commit | 3afb4db782a3bf4e6f14912d7aeb534264d2d2e3 (patch) | |
tree | 964f2eea99e3747b8bceaa54ca344754ad5966c0 /drivers/gpu/drm/nouveau/dispnv50/ovly507e.c | |
parent | 85bdfcd4358832fd7185b27343ad305bf78b4269 (diff) |
drm/nouveau/kms/nv50-: convert wndw update() to new push macros
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/dispnv50/ovly507e.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/dispnv50/ovly507e.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/gpu/drm/nouveau/dispnv50/ovly507e.c b/drivers/gpu/drm/nouveau/dispnv50/ovly507e.c index 77f3c9789717..b46c95e71e49 100644 --- a/drivers/gpu/drm/nouveau/dispnv50/ovly507e.c +++ b/drivers/gpu/drm/nouveau/dispnv50/ovly507e.c @@ -30,17 +30,6 @@ #include <nvif/event.h> #include <nvif/push507c.h> -void -ovly507e_update(struct nv50_wndw *wndw, u32 *interlock) -{ - u32 *push; - if ((push = evo_wait(&wndw->wndw, 2))) { - evo_mthd(push, 0x0080, 1); - evo_data(push, interlock[NV50_DISP_INTERLOCK_CORE]); - evo_kick(push, &wndw->wndw); - } -} - int ovly507e_scale_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw) { @@ -118,7 +107,7 @@ ovly507e = { .image_set = ovly507e_image_set, .image_clr = base507c_image_clr, .scale_set = ovly507e_scale_set, - .update = ovly507e_update, + .update = base507c_update, }; static const u32 |