[PATCH] ARM: AMBA CLCD: X resolutions must be multiples of 16
authorRussell King <rmk@dyn-67.arm.linux.org.uk>
Thu, 28 Apr 2005 09:46:15 +0000 (10:46 +0100)
committerRussell King <rmk@dyn-67.arm.linux.org.uk>
Thu, 28 Apr 2005 09:46:15 +0000 (10:46 +0100)
We ignore the bottom 4 bits of the X resolution, so we should
round X resolutions up to the nearest multiple of 16.

Signed-off-by: Russell King <rmk@arm.linux.org.uk>
include/asm-arm/hardware/amba_clcd.h

index d6ad33e52ea955d714dca140269a1b43abef1473..ce4cf5c1c05d7affced4678fea31b1fcdf68822d 100644 (file)
@@ -222,7 +222,7 @@ static inline void clcdfb_decode(struct clcd_fb *fb, struct clcd_regs *regs)
 
 static inline int clcdfb_check(struct clcd_fb *fb, struct fb_var_screeninfo *var)
 {
-       var->xres_virtual = var->xres = (var->xres + 7) & ~7;
+       var->xres_virtual = var->xres = (var->xres + 15) & ~15;
        var->yres_virtual = var->yres = (var->yres + 1) & ~1;
 
 #define CHECK(e,l,h) (var->e < l || var->e > h)