Commit 8d1f57e3 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] fix ";" in cs46xx

parent 3ad66d19
......@@ -4314,7 +4314,7 @@ static void cs461x_download_image(struct cs_card *card)
{
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);
}
......
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