projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd2f203
)
drm/nv50: fix typos in CCACHE error reporting
author
Marcin Slusarz
<marcin.slusarz@gmail.com>
Sun, 13 Feb 2011 19:46:41 +0000
(20:46 +0100)
committer
Ben Skeggs
<bskeggs@redhat.com>
Thu, 24 Feb 2011 20:45:23 +0000
(06:45 +1000)
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>
drivers/gpu/drm/nouveau/nv50_graph.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/nouveau/nv50_graph.c
b/drivers/gpu/drm/nouveau/nv50_graph.c
index 7b7b5e77d99e151be6b926d54a672df31bd1d290..289c0dd6c53db10d8a27a4bacdf28d47d85b8a38 100644
(file)
--- 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
printk("\n");
NV_INFO(dev, "PGRAPH - TRAP_CCACHE %08x %08x %08x %08x"
" %08x %08x %08x\n",
- nv_rd32(dev, 0x405
800), nv_rd32(dev, 0x4058
04),
- nv_rd32(dev, 0x405
808), nv_rd32(dev, 0x4058
0c),
- nv_rd32(dev, 0x405
810), nv_rd32(dev, 0x4058
14),
- nv_rd32(dev, 0x405
8
1c));
+ nv_rd32(dev, 0x405
000), nv_rd32(dev, 0x4050
04),
+ nv_rd32(dev, 0x405
008), nv_rd32(dev, 0x4050
0c),
+ nv_rd32(dev, 0x405
010), nv_rd32(dev, 0x4050
14),
+ nv_rd32(dev, 0x405
0
1c));
}