To: linus, akpm, james Cc: lkml Subject: [PATCH] amifb sparse &= Amiga Frame buffer: Use `&' instead of `&=' (found by sparse, present since at least 2.0.x) Signed-off-by: Geert Uytterhoeven --- amifb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-2.6.8-rc2/drivers/video/amifb.c 2004-04-28 15:49:02.000000000 +0200 +++ linux-m68k-2.6.8-rc2/drivers/video/amifb.c 2004-07-10 21:07:38.000000000 +0200 @@ -1309,7 +1311,7 @@ info->fix.ypanstep = 0; } else { info->fix.ywrapstep = 0; - if (par->vmode &= FB_VMODE_SMOOTH_XPAN) + if (par->vmode & FB_VMODE_SMOOTH_XPAN) info->fix.xpanstep = 1; else info->fix.xpanstep = 16<