PATCH: fix ";" in cs46xx

Alan Cox (alan@lxorguk.ukuu.org.uk)
Fri, 21 Mar 2003 20:08:19 GMT


diff -u --new-file --recursive --exclude-from /usr/src/exclude linux-2.5.65/sound/oss/cs46xx.c linux-2.5.65-ac2/sound/oss/cs46xx.c
--- linux-2.5.65/sound/oss/cs46xx.c 2003-03-06 17:04:39.000000000 +0000
+++ linux-2.5.65-ac2/sound/oss/cs46xx.c 2003-03-06 22:01:50.000000000 +0000
@@ -4314,7 +4314,7 @@
{
offset = ClrStat[i].BA1__DestByteOffset;
count = ClrStat[i].BA1__SourceSize;
- for( temp1 = offset; temp1<(offset+count); temp1+=4 );
+ for( temp1 = offset; temp1<(offset+count); temp1+=4 )
writel(0, pBA1+temp1);
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/