Skip to content

Commit

Permalink
vermilion.c: use ALIGN(), not __ALIGN_MASK()
Browse files Browse the repository at this point in the history
__ALIGN_MASK() is an internal implementation detail of ALIGN().  Let's not
needlessly fatten the interface in this driver.

[fujita.tomonori@lab.ntt.co.jp: fix it]
Cc: Alan Hourihane <alanh@fairlite.demon.co.uk>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Feb 6, 2008
1 parent 0e90454 commit 2e97502
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/video/vermilion/vermilion.c
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ static int vmlfb_check_var_locked(struct fb_var_screeninfo *var,
return -EINVAL;
}

pitch = __ALIGN_MASK((var->xres * var->bits_per_pixel) >> 3, 0x3F);
pitch = ALIGN((var->xres * var->bits_per_pixel) >> 3, 0x40);
mem = pitch * var->yres_virtual;
if (mem > vinfo->vram_contig_size) {
return -ENOMEM;
Expand Down Expand Up @@ -785,8 +785,7 @@ static int vmlfb_set_par_locked(struct vml_info *vinfo)
int clock;

vinfo->bytes_per_pixel = var->bits_per_pixel >> 3;
vinfo->stride =
__ALIGN_MASK(var->xres_virtual * vinfo->bytes_per_pixel, 0x3F);
vinfo->stride = ALIGN(var->xres_virtual * vinfo->bytes_per_pixel, 0x40);
info->fix.line_length = vinfo->stride;

if (!subsys)
Expand Down

0 comments on commit 2e97502

Please sign in to comment.