Skip to content

Commit

Permalink
ps3fb: make frame buffer offsets unsigned int
Browse files Browse the repository at this point in the history
Frame buffer offsets don't have to be `unsigned long', `unsigned int' is
sufficient

Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Geert Uytterhoeven authored and Linus Torvalds committed Feb 6, 2008
1 parent 9f4f21b commit 7974f72
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions drivers/video/ps3fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ struct ps3fb_par {
unsigned int ddr_line_length;
unsigned int ddr_frame_size;
unsigned int xdr_frame_size;
unsigned long full_offset; /* start of fullscreen DDR fb */
unsigned long fb_offset; /* start of actual DDR fb */
unsigned long pan_offset;
unsigned int full_offset; /* start of fullscreen DDR fb */
unsigned int fb_offset; /* start of actual DDR fb */
unsigned int pan_offset;
};


Expand Down Expand Up @@ -512,8 +512,7 @@ static int ps3fb_set_par(struct fb_info *info)
{
struct ps3fb_par *par = info->par;
unsigned int mode, ddr_line_length, xdr_line_length, lines, maxlines;
unsigned int ddr_xoff, ddr_yoff;
unsigned long offset;
unsigned int ddr_xoff, ddr_yoff, offset;
const struct fb_videomode *vmode;
u64 dst;

Expand Down

0 comments on commit 7974f72

Please sign in to comment.