mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +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,11 +127,13 @@ 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) {
|
||||
if (pass < 1) {
|
||||
|
Reference in New Issue
Block a user