projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb2c0c8
)
drm/i915: [dinq] shut up six instances of -Warray-bounds
author
Ben Widawsky
<ben@bwidawsk.net>
Wed, 15 Feb 2012 13:42:42 +0000
(14:42 +0100)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Thu, 22 Mar 2012 16:45:06 +0000
(17:45 +0100)
Introduced in commits
c1cd90ed
and
d27b1e0e
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
[danvet: s/fix/shut up in the commit msg and add a comment to the
BUG_ON.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_debugfs.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/i915/i915_debugfs.c
b/drivers/gpu/drm/i915/i915_debugfs.c
index fdb7ccefffbdfc77a1dc7328c2ae727e371a7bad..66c90d4477a3ddda416d6167a3996905f4144b96 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_debugfs.c
+++ b/
drivers/gpu/drm/i915/i915_debugfs.c
@@
-704,6
+704,7
@@
static void i915_ring_error_state(struct seq_file *m,
struct drm_i915_error_state *error,
unsigned ring)
{
+ BUG_ON(ring > VCS); /* shut up confused gcc */
seq_printf(m, "%s command stream:\n", ring_str(ring));
seq_printf(m, " HEAD: 0x%08x\n", error->head[ring]);
seq_printf(m, " TAIL: 0x%08x\n", error->tail[ring]);