diff options
author | Ben Skeggs <bskeggs@nvidia.com> | 2024-07-26 07:38:28 +0300 |
---|---|---|
committer | Danilo Krummrich <dakr@kernel.org> | 2024-07-27 04:05:51 +0300 |
commit | 61671d85def2960bbf52db22e9e45b3bf8a5ceb5 (patch) | |
tree | 8a5e71f58a77325a00df9f0407df2b1560e251d1 /drivers/gpu/drm/nouveau/dispnv50/ovly907e.c | |
parent | 723388bc0fb68f2487795796f4e616ea39cee99c (diff) | |
download | linux-61671d85def2960bbf52db22e9e45b3bf8a5ceb5.tar.xz |
drm/nouveau/kms: remove push pointer from nv50_dmac
The struct itself lives in nv50_dmac already, just use that.
Signed-off-by: Ben Skeggs <bskeggs@nvidia.com>
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240726043828.58966-38-bskeggs@nvidia.com
Diffstat (limited to 'drivers/gpu/drm/nouveau/dispnv50/ovly907e.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/dispnv50/ovly907e.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/dispnv50/ovly907e.c b/drivers/gpu/drm/nouveau/dispnv50/ovly907e.c index 645130d18a99..8cf0e18fa596 100644 --- a/drivers/gpu/drm/nouveau/dispnv50/ovly907e.c +++ b/drivers/gpu/drm/nouveau/dispnv50/ovly907e.c @@ -29,7 +29,7 @@ static int ovly907e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw) { - struct nvif_push *push = wndw->wndw.push; + struct nvif_push *push = &wndw->wndw.push; int ret; if ((ret = PUSH_WAIT(push, 12))) |