drm/nouveau/ltc: switch to subdev printk macros
authorBen Skeggs <bskeggs@redhat.com>
Thu, 20 Aug 2015 04:54:12 +0000 (14:54 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 28 Aug 2015 02:40:23 +0000 (12:40 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gf100.c
drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gm107.c

index 7e60a1393fc8d1941e69a7bd71566bc8fc5af4f1..22712cdc01b32fbb19d6b6fa417b523480cc6b5d 100644 (file)
@@ -92,15 +92,16 @@ gf100_ltc_lts_intr_name[] = {
 static void
 gf100_ltc_lts_intr(struct nvkm_ltc_priv *ltc, int c, int s)
 {
-       struct nvkm_device *device = ltc->base.subdev.device;
+       struct nvkm_subdev *subdev = &ltc->base.subdev;
+       struct nvkm_device *device = subdev->device;
        u32 base = 0x141000 + (c * 0x2000) + (s * 0x400);
        u32 intr = nvkm_rd32(device, base + 0x020);
        u32 stat = intr & 0x0000ffff;
+       char msg[128];
 
        if (stat) {
-               nv_info(ltc, "LTC%d_LTS%d:", c, s);
-               nvkm_bitfield_print(gf100_ltc_lts_intr_name, stat);
-               pr_cont("\n");
+               nvkm_snprintbf(msg, sizeof(msg), gf100_ltc_lts_intr_name, stat);
+               nvkm_error(subdev, "LTC%d_LTS%d: %08x [%s]\n", c, s, stat, msg);
        }
 
        nvkm_wr32(device, base + 0x020, intr);
index 438085e978ec495609d9ffb48e9514adf2f8316d..222f37e50a9512506028f4f9c9b2f838a50f2d43 100644 (file)
@@ -73,12 +73,13 @@ gm107_ltc_zbc_clear_depth(struct nvkm_ltc_priv *ltc, int i, const u32 depth)
 static void
 gm107_ltc_lts_isr(struct nvkm_ltc_priv *ltc, int c, int s)
 {
-       struct nvkm_device *device = ltc->base.subdev.device;
+       struct nvkm_subdev *subdev = &ltc->base.subdev;
+       struct nvkm_device *device = subdev->device;
        u32 base = 0x140000 + (c * 0x2000) + (s * 0x400);
        u32 stat = nvkm_rd32(device, base + 0x00c);
 
        if (stat) {
-               nv_info(ltc, "LTC%d_LTS%d: 0x%08x\n", c, s, stat);
+               nvkm_error(subdev, "LTC%d_LTS%d: %08x\n", c, s, stat);
                nvkm_wr32(device, base + 0x00c, stat);
        }
 }
This page took 0.027485 seconds and 5 git commands to generate.