mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
alpha: Avoid comma separated statements
Use semicolons and braces. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
@@ -127,10 +127,12 @@ again:
|
||||
goto again;
|
||||
}
|
||||
|
||||
if (ptes[p+i])
|
||||
p = ALIGN(p + i + 1, mask + 1), i = 0;
|
||||
else
|
||||
if (ptes[p+i]) {
|
||||
p = ALIGN(p + i + 1, mask + 1);
|
||||
i = 0;
|
||||
} else {
|
||||
i = i + 1;
|
||||
}
|
||||
}
|
||||
|
||||
if (i < n) {
|
||||
|
Reference in New Issue
Block a user