Commit a1e68927 authored by Roel Kluin's avatar Roel Kluin Committed by Linus Torvalds

drivers/video/imsttfb.c: add missing curly brackets

in #if 0 inactivated function msttfb_load_cursor_image() the call eieio()
occurs after rather than in the loop due to missing curly brackets.
Signed-off-by: default avatarRoel Kluin <12o3l@tiscali.nl>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 5e72b32d
...@@ -1151,8 +1151,10 @@ imsttfb_load_cursor_image(struct imstt_par *par, int width, int height, __u8 fgc ...@@ -1151,8 +1151,10 @@ imsttfb_load_cursor_image(struct imstt_par *par, int width, int height, __u8 fgc
par->cmap_regs[TVPCRDAT] = 0xff; eieio(); par->cmap_regs[TVPCRDAT] = 0xff; eieio();
} }
par->cmap_regs[TVPCADRW] = 0x00; eieio(); par->cmap_regs[TVPCADRW] = 0x00; eieio();
for (x = 0; x < 12; x++) for (x = 0; x < 12; x++) {
par->cmap_regs[TVPCDATA] = fgc; eieio(); par->cmap_regs[TVPCDATA] = fgc;
eieio();
}
} }
return 1; return 1;
} }
......
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