Commit a43e0dc4 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

[PATCH] Atafb bug in #if 0 code

Atafb bug in #if 0 code (from 2.4.x)
parent ecb8a7d0
......@@ -1182,7 +1182,7 @@ static int falcon_decode_var( struct fb_var_screeninfo *var,
par->HBB = gend2 - par->HHT - 2;
#if 0
/* One more Videl constraint: data fetch of two lines must not overlap */
if (par->HDB & 0x200 && par->HDB & ~0x200 - par->HDE <= 5) {
if ((par->HDB & 0x200) && (par->HDB & ~0x200) - par->HDE <= 5) {
/* if this happens increase margins, decrease hfreq. */
}
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment