diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2020-03-30 05:49:05 +0200 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2020-07-24 10:50:50 +0200 |
commit | bd21080eb6ca476cd64afbc3f8e5228a83080ddb (patch) | |
tree | a368bedd7fd255e91e91e26bbbbb11ba193575e0 /drivers/gpu/drm/nouveau/nvif/device.c | |
parent | drm/nouveau/nvif: give every object a human-readable identifier (diff) | |
download | linux-bd21080eb6ca476cd64afbc3f8e5228a83080ddb.tar.xz linux-bd21080eb6ca476cd64afbc3f8e5228a83080ddb.zip |
drm/nouveau/nvif: give every device object a human-readable identifier
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nvif/device.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nvif/device.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/nouveau/nvif/device.c b/drivers/gpu/drm/nouveau/nvif/device.c index e801c4de2a98..a3aebf865931 100644 --- a/drivers/gpu/drm/nouveau/nvif/device.c +++ b/drivers/gpu/drm/nouveau/nvif/device.c @@ -39,7 +39,7 @@ nvif_device_time(struct nvif_device *device) } void -nvif_device_fini(struct nvif_device *device) +nvif_device_dtor(struct nvif_device *device) { nvif_user_fini(device); kfree(device->runlist); @@ -48,10 +48,10 @@ nvif_device_fini(struct nvif_device *device) } int -nvif_device_init(struct nvif_object *parent, u32 handle, s32 oclass, - void *data, u32 size, struct nvif_device *device) +nvif_device_ctor(struct nvif_object *parent, const char *name, u32 handle, + s32 oclass, void *data, u32 size, struct nvif_device *device) { - int ret = nvif_object_ctor(parent, "nvifDevice", handle, + int ret = nvif_object_ctor(parent, name ? name : "nvifDevice", handle, oclass, data, size, &device->object); device->runlist = NULL; device->user.func = NULL; |