summaryrefslogtreecommitdiff
path: root/bin/nv_wsfunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/nv_wsfunc.h')
-rw-r--r--bin/nv_wsfunc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/nv_wsfunc.h b/bin/nv_wsfunc.h
index 909fd70cf..a77dda676 100644
--- a/bin/nv_wsfunc.h
+++ b/bin/nv_wsfunc.h
@@ -7,10 +7,10 @@ nv_wsys(struct nvif_device *device, u64 addr, CAST data)
{
if (device->info.family >= NV_DEVICE_INFO_V0_TESLA &&
device->info.family <= NV_DEVICE_INFO_V0_MAXWELL) {
- u32 pmem = nvif_rd32(device, 0x001700);
- nvif_wr32(device, 0x001700, 0x02000000 | (addr >> 16));
- WSYS(device, 0x700000 + (addr & 0xffffULL), data);
- nvif_wr32(device, 0x001700, pmem);
+ u32 pmem = nvif_rd32(&device->object, 0x001700);
+ nvif_wr32(&device->object, 0x001700, 0x02000000 | (addr >> 16));
+ WSYS(&device->object, 0x700000 + (addr & 0xffffULL), data);
+ nvif_wr32(&device->object, 0x001700, pmem);
} else {
printk("unsupported chipset\n");
exit(1);