diff options
author | Marcin Slusarz <marcin.slusarz@gmail.com> | 2011-02-13 14:46:41 -0500 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-02-24 15:45:23 -0500 |
commit | 4dcf905c843af9de623da42c3b5b12b98c68e62b (patch) | |
tree | e729ea5bcb78b0147b857507b93a8e4e80c7ae09 | |
parent | bd2f2037a42d4657ead3be2918db22e63626cd35 (diff) |
drm/nv50: fix typos in CCACHE error reporting
The code was supposed to print registers around 0x405018 (which is read
earlier), not 0x405818.
Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/nv50_graph.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_graph.c b/drivers/gpu/drm/nouveau/nv50_graph.c index 7b7b5e77d99e..289c0dd6c53d 100644 --- a/drivers/gpu/drm/nouveau/nv50_graph.c +++ b/drivers/gpu/drm/nouveau/nv50_graph.c | |||
@@ -907,10 +907,10 @@ nv50_pgraph_trap_handler(struct drm_device *dev, u32 display, u64 inst, u32 chid | |||
907 | printk("\n"); | 907 | printk("\n"); |
908 | NV_INFO(dev, "PGRAPH - TRAP_CCACHE %08x %08x %08x %08x" | 908 | NV_INFO(dev, "PGRAPH - TRAP_CCACHE %08x %08x %08x %08x" |
909 | " %08x %08x %08x\n", | 909 | " %08x %08x %08x\n", |
910 | nv_rd32(dev, 0x405800), nv_rd32(dev, 0x405804), | 910 | nv_rd32(dev, 0x405000), nv_rd32(dev, 0x405004), |
911 | nv_rd32(dev, 0x405808), nv_rd32(dev, 0x40580c), | 911 | nv_rd32(dev, 0x405008), nv_rd32(dev, 0x40500c), |
912 | nv_rd32(dev, 0x405810), nv_rd32(dev, 0x405814), | 912 | nv_rd32(dev, 0x405010), nv_rd32(dev, 0x405014), |
913 | nv_rd32(dev, 0x40581c)); | 913 | nv_rd32(dev, 0x40501c)); |
914 | 914 | ||
915 | } | 915 | } |
916 | 916 | ||