Skip to content

Commit

Permalink
ps3fb: kill superfluous zero initializations
Browse files Browse the repository at this point in the history
ps3fb: kill superfluous zero initializations

Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Geert Uytterhoeven authored and Linus Torvalds committed May 5, 2007
1 parent 5caf5db commit bd685ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/ps3fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,10 @@ static const struct fb_videomode ps3fb_modedb[] = {
#define VP_OFF(i) (WIDTH(i) * Y_OFF(i) * BPP + X_OFF(i) * BPP)
#define FB_OFF(i) (GPU_OFFSET - VP_OFF(i) % GPU_OFFSET)

static int ps3fb_mode = 0;
static int ps3fb_mode;
module_param(ps3fb_mode, bool, 0);

static char *mode_option __initdata = NULL;
static char *mode_option __initdata;


static int ps3fb_get_res_table(u32 xres, u32 yres)
Expand Down

0 comments on commit bd685ac

Please sign in to comment.