summaryrefslogtreecommitdiff
path: root/bin/nv_rd32.c
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2015-08-20 14:54:15 +1000
committerBen Skeggs <bskeggs@redhat.com>2015-08-28 12:37:37 +1000
commit33b1104b25f0e58ca56d6dd13ce917371a9115fe (patch)
tree67639b4e9c8d27aa402ae417dba802a02ee5c07f /bin/nv_rd32.c
parent7ecff2076fd08dcc202e468385dec56002d32292 (diff)
downloadnouveau-33b1104b25f0e58ca56d6dd13ce917371a9115fe.tar.gz
nvif: simplify and tidy library interfaces
A variety of tweaks to the NVIF library interfaces, mostly ripping out things that turned out to be not so useful. - Removed refcounting from nvif_object, callers are expected to not be stupid instead. - nvif_client is directly reachable from anything derived from nvif_object, removing the need for heuristics to locate it - _new() versions of interfaces, that allocate memory for the object they construct, have been removed. The vast majority of callers used the embedded _init() interfaces. - No longer storing constructor arguments (and the data returned from nvkm) inside nvif_object, it's more or less unused and just wastes memory. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'bin/nv_rd32.c')
-rw-r--r--bin/nv_rd32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nv_rd32.c b/bin/nv_rd32.c
index f03739523..04b615e3a 100644
--- a/bin/nv_rd32.c
+++ b/bin/nv_rd32.c
@@ -2,6 +2,6 @@
#define FMTDATA "0x%08x"
#define NAME "nv_rd32"
#define CAST u32
-#define READ(o) nvif_rd32(device, (o))
+#define READ(o) nvif_rd32(&device->object, (o))
#define MAIN main
#include "nv_rdfunc.h"