Commit 390725c3 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] drivers/video/radeonfb.c: fix an array overflow

This patch fixes an array overflow found by the Coverity checker.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 6e3e98d1
...@@ -2107,7 +2107,7 @@ static void radeon_write_mode (struct radeonfb_info *rinfo, ...@@ -2107,7 +2107,7 @@ static void radeon_write_mode (struct radeonfb_info *rinfo,
if (rinfo->arch == RADEON_M6) { if (rinfo->arch == RADEON_M6) {
for (i=0; i<8; i++) for (i=0; i<7; i++)
OUTREG(common_regs_m6[i].reg, common_regs_m6[i].val); OUTREG(common_regs_m6[i].reg, common_regs_m6[i].val);
} else { } else {
for (i=0; i<9; i++) for (i=0; i<9; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment