[PATCH] au1100fb: convert to C99 inits.

au1100: use C99 struct init.

Signed-off-by: randy_dunlap <rdunlap@xenotime.net>
Acked-by: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by randy_dunlap and committed by Linus Torvalds 2b1ee233 09dbb476

+9 -9
+9 -9
drivers/video/au1100fb.c
··· 111 void au1100_nocursor(struct display *p, int mode, int xx, int yy){}; 112 113 static struct fb_ops au1100fb_ops = { 114 - owner: THIS_MODULE, 115 - fb_get_fix: fbgen_get_fix, 116 - fb_get_var: fbgen_get_var, 117 - fb_set_var: fbgen_set_var, 118 - fb_get_cmap: fbgen_get_cmap, 119 - fb_set_cmap: fbgen_set_cmap, 120 - fb_pan_display: fbgen_pan_display, 121 - fb_ioctl: au1100fb_ioctl, 122 - fb_mmap: au1100fb_mmap, 123 }; 124 125 static void au1100_detect(void)
··· 111 void au1100_nocursor(struct display *p, int mode, int xx, int yy){}; 112 113 static struct fb_ops au1100fb_ops = { 114 + .owner = THIS_MODULE, 115 + .fb_get_fix = fbgen_get_fix, 116 + .fb_get_var = fbgen_get_var, 117 + .fb_set_var = fbgen_set_var, 118 + .fb_get_cmap = fbgen_get_cmap, 119 + .fb_set_cmap = fbgen_set_cmap, 120 + .fb_pan_display = fbgen_pan_display, 121 + .fb_ioctl = au1100fb_ioctl, 122 + .fb_mmap = au1100fb_mmap, 123 }; 124 125 static void au1100_detect(void)