diff options
author | Ben Skeggs | 2016-05-18 13:36:34 +1000 |
---|---|---|
committer | Ben Skeggs | 2017-02-17 15:15:03 +1000 |
commit | 20d8a88e557aae5264e793f4626c45cd644c7144 (patch) | |
tree | 94da7be739c77e3a6d9fc0069c5d813e4a90888f /drivers/gpu/drm/nouveau/nouveau_drv.h | |
parent | fc1b0a02ad4f463e10574afcec797ff620f6813d (diff) |
drm/nouveau: tidy up the client init/fini interfaces
These were a little insane.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_drv.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index 8d5ed5bfdacb..ac36bef12749 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -86,14 +86,15 @@ enum nouveau_drm_handle { struct nouveau_cli { struct nvif_client base; + struct drm_device *dev; + struct mutex mutex; + struct nvkm_vm *vm; /*XXX*/ struct list_head head; - struct mutex mutex; void *abi16; struct list_head objects; struct list_head notifys; char name[32]; - struct drm_device *dev; }; static inline struct nouveau_cli * |