diff options
author | Andrew Morton <akpm@osdl.org> | 2005-09-23 16:24:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-23 16:35:36 -0400 |
commit | 2601c2e278863cd48c01bce1377b4c9747893025 (patch) | |
tree | 7d0de071e962b55c57f302106b6356761c08923e | |
parent | a3b5f0d43863402b03b3af9a7eaec0037a823374 (diff) |
[PATCH] atyfb c99 fix
- fix this:
drivers/video/aty/xlinit.c: In function `atyfb_xl_init':
drivers/video/aty/xlinit.c:256: warning: ISO C90 forbids mixed declarations and code
- repair some kooky coding style
- Use ARRAY_SIZE()
Cc: Tom 'spot' Callaway <tcallawa@redhat.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/video/aty/xlinit.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/video/aty/xlinit.c b/drivers/video/aty/xlinit.c index 0bea0d8d7821..a085cbf74ecb 100644 --- a/drivers/video/aty/xlinit.c +++ b/drivers/video/aty/xlinit.c | |||
@@ -253,9 +253,11 @@ int atyfb_xl_init(struct fb_info *info) | |||
253 | aty_st_le32(0xFC, 0x00000000, par); | 253 | aty_st_le32(0xFC, 0x00000000, par); |
254 | 254 | ||
255 | #if defined (CONFIG_FB_ATY_GENERIC_LCD) | 255 | #if defined (CONFIG_FB_ATY_GENERIC_LCD) |
256 | int i; | 256 | { |
257 | for (i=0; i<sizeof(lcd_tbl)/sizeof(lcd_tbl_t); i++) { | 257 | int i; |
258 | aty_st_lcd(lcd_tbl[i].lcd_reg, lcd_tbl[i].val, par); | 258 | |
259 | for (i = 0; i < ARRAY_SIZE(lcd_tbl); i++) | ||
260 | aty_st_lcd(lcd_tbl[i].lcd_reg, lcd_tbl[i].val, par); | ||
259 | } | 261 | } |
260 | #endif | 262 | #endif |
261 | 263 | ||