drm/nouveau/ce: switch to device pri macros
authorBen Skeggs <bskeggs@redhat.com>
Thu, 20 Aug 2015 04:54:09 +0000 (14:54 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 28 Aug 2015 02:40:17 +0000 (12:40 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/engine/ce/gk104.c
drivers/gpu/drm/nouveau/nvkm/engine/ce/gm204.c

index 1abf22f..2237a44 100644 (file)
@@ -62,13 +62,14 @@ gk104_ce_cclass = {
 static void
 gk104_ce_intr(struct nvkm_subdev *subdev)
 {
+       struct nvkm_device *device = subdev->device;
        const int idx = nv_subidx(subdev) - NVDEV_ENGINE_CE0;
        struct nvkm_engine *ce = (void *)subdev;
-       u32 stat = nv_rd32(ce, 0x104908 + (idx * 0x1000));
+       u32 stat = nvkm_rd32(device, 0x104908 + (idx * 0x1000));
 
        if (stat) {
                nv_warn(ce, "unhandled intr 0x%08x\n", stat);
-               nv_wr32(ce, 0x104908 + (idx * 0x1000), stat);
+               nvkm_wr32(device, 0x104908 + (idx * 0x1000), stat);
        }
 }
 
index 3fd896a..698dedd 100644 (file)
@@ -62,13 +62,14 @@ gm204_ce_cclass = {
 static void
 gm204_ce_intr(struct nvkm_subdev *subdev)
 {
+       struct nvkm_device *device = subdev->device;
        const int idx = nv_subidx(subdev) - NVDEV_ENGINE_CE0;
        struct nvkm_engine *ce = (void *)subdev;
-       u32 stat = nv_rd32(ce, 0x104908 + (idx * 0x1000));
+       u32 stat = nvkm_rd32(device, 0x104908 + (idx * 0x1000));
 
        if (stat) {
                nv_warn(ce, "unhandled intr 0x%08x\n", stat);
-               nv_wr32(ce, 0x104908 + (idx * 0x1000), stat);
+               nvkm_wr32(device, 0x104908 + (idx * 0x1000), stat);
        }
 }