aboutsummaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/nouveau/core/include/core/client.h
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2012-09-12 13:09:23 +1000
committerBen Skeggs <bskeggs@redhat.com>2012-10-03 13:13:10 +1000
commitfa6df8c163ddf1fba658059695ab9587f344712c (patch)
treeede64264bed984ed9dc3c376689ec9b3194ddf97 /drivers/gpu/drm/nouveau/core/include/core/client.h
parentb3ccd34ded3e730bba33cd4bd4b7ab78b4a0bb03 (diff)
drm/nouveau/core: have client-id be a string, rather than an integer
Can be somewhat more informative that way... Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/core/include/core/client.h')
-rw-r--r--drivers/gpu/drm/nouveau/core/include/core/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/core/include/core/client.h b/drivers/gpu/drm/nouveau/core/include/core/client.h
index f5f45f22828..0193532ceac 100644
--- a/drivers/gpu/drm/nouveau/core/include/core/client.h
+++ b/drivers/gpu/drm/nouveau/core/include/core/client.h
@@ -7,7 +7,7 @@ struct nouveau_client {
struct nouveau_namedb base;
struct nouveau_handle *root;
struct nouveau_object *device;
- u32 handle;
+ char name[16];
u32 debug;
struct nouveau_vm *vm;
};
@@ -34,7 +34,7 @@ nouveau_client(void *obj)
#define nouveau_client_create(n,c,oc,od,d) \
nouveau_client_create_((n), (c), (oc), (od), sizeof(**d), (void **)d)
-int nouveau_client_create_(u32 name, u64 device, const char *cfg,
+int nouveau_client_create_(const char *name, u64 device, const char *cfg,
const char *dbg, int, void **);
int nouveau_client_init(struct nouveau_client *);
int nouveau_client_fini(struct nouveau_client *, bool suspend);