* Re: [PATCH] radeonfb: screeninfo initialization cleanup
[not found] <200410281712.i9SHCxDe025312@hera.kernel.org>
@ 2004-10-29 18:49 ` Geert Uytterhoeven
2004-10-29 20:11 ` [PATCH] radeonfb: more initializer fixes Pekka Enberg
0 siblings, 1 reply; 2+ messages in thread
From: Geert Uytterhoeven @ 2004-10-29 18:49 UTC (permalink / raw)
To: Pekka Enberg
Cc: Andrew Morton, Linus Torvalds, Benjamin Herrenschmidt,
Linux Frame Buffer Device Development, Linux Kernel Development
On Thu, 28 Oct 2004, Linux Kernel Mailing List wrote:
> ChangeSet 1.2265, 2004/10/28 08:23:51-07:00, penberg@cs.helsinki.fi
>
> [PATCH] radeonfb: screeninfo initialization cleanup
>
> This patch changes the initialization of radeonfb_default_var to use named
> initializers and avoids explicitly setting fields that are automatically
> zeroed.
> --- a/drivers/video/aty/radeon_monitor.c 2004-10-28 10:13:09 -07:00
> +++ b/drivers/video/aty/radeon_monitor.c 2004-10-28 10:13:09 -07:00
> @@ -7,10 +7,25 @@
> #endif /* CONFIG_PPC_OF */
>
> static struct fb_var_screeninfo radeonfb_default_var = {
> - 640, 480, 640, 480, 0, 0, 8, 0,
> - {0, 6, 0}, {0, 6, 0}, {0, 6, 0}, {0, 0, 0},
> - 0, 0, -1, -1, 0, 39721, 40, 24, 32, 11, 96, 2,
> - 0, FB_VMODE_NONINTERLACED
> + .xres = 640,
> + .yres = 480,
> + .xres_virtual = 640,
> + .yres_virtual = 480,
> + .bits_per_pixel = 8,
> + .red = { 0, 6, 0 },
^
> + .green = { 0, 6, 0 },
^
> + .blue = { 0, 6, 0 },
^
Should be 8 these days (256 usable color palette entries).
And why not use `{ .length = 8 }' if you don't care about automatically zeroed
fields?
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
^ permalink raw reply [flat|nested] 2+ messages in thread