summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/nouveau/include/nvif/object.h
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2015-08-20 14:54:16 +1000
committerBen Skeggs <bskeggs@redhat.com>2015-08-28 12:40:32 +1000
commit315a8b2edf51711857795ba6e02b843d7792b59c (patch)
treececd9681f6de04ee9ef80bdf23f76ae1861abd33 /drivers/gpu/drm/nouveau/include/nvif/object.h
parent5c15bf709eb6fb52c5bcb95d545250dde22f9625 (diff)
downloadlwn-315a8b2edf51711857795ba6e02b843d7792b59c.tar.gz
lwn-315a8b2edf51711857795ba6e02b843d7792b59c.zip
drm/nouveau/nvif: use negative oclass identifier for internal classes
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/include/nvif/object.h')
-rw-r--r--drivers/gpu/drm/nouveau/include/nvif/object.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/include/nvif/object.h b/drivers/gpu/drm/nouveau/include/nvif/object.h
index b46c2f4aa0db..66d3425e4764 100644
--- a/drivers/gpu/drm/nouveau/include/nvif/object.h
+++ b/drivers/gpu/drm/nouveau/include/nvif/object.h
@@ -6,7 +6,7 @@
struct nvif_object {
struct nvif_client *client;
u32 handle;
- u32 oclass;
+ s32 oclass;
void *priv; /*XXX: hack */
struct {
void __iomem *ptr;
@@ -14,11 +14,11 @@ struct nvif_object {
} map;
};
-int nvif_object_init(struct nvif_object *, u32 handle, u32 oclass, void *, u32,
+int nvif_object_init(struct nvif_object *, u32 handle, s32 oclass, void *, u32,
struct nvif_object *);
void nvif_object_fini(struct nvif_object *);
int nvif_object_ioctl(struct nvif_object *, void *, u32, void **);
-int nvif_object_sclass(struct nvif_object *, u32 *, int);
+int nvif_object_sclass(struct nvif_object *, s32 *, int);
u32 nvif_object_rd(struct nvif_object *, int, u64);
void nvif_object_wr(struct nvif_object *, int, u64, u32);
int nvif_object_mthd(struct nvif_object *, u32, void *, u32);