From: Joe Perches Date: Tue, 25 Aug 2020 04:55:59 +0000 (+0000) Subject: alpha: Avoid comma separated statements X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4da2bd306bffb46109819647b28e8cabae39c941;p=linux.git alpha: Avoid comma separated statements Use semicolons and braces. Signed-off-by: Joe Perches Signed-off-by: Matt Turner --- diff --git a/arch/alpha/kernel/pci_iommu.c b/arch/alpha/kernel/pci_iommu.c index e83a02ed52676..c81183935e970 100644 --- a/arch/alpha/kernel/pci_iommu.c +++ b/arch/alpha/kernel/pci_iommu.c @@ -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) {