lib: sbi: Remove unnecessary semicolon

We have redundant semicolon at quite a few places so let's remove it.

Signed-off-by: Xiang W <wxjstz@126.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
Xiang W
2023-04-25 16:56:23 +08:00
committed by Anup Patel
parent 7919530308
commit 4e3353057a
15 changed files with 19 additions and 19 deletions

View File

@@ -261,7 +261,7 @@ static int sanitize_domain(const struct sbi_platform *plat,
"hart %d\n", __func__, dom->name, i);
return SBI_EINVAL;
}
};
}
/* Check memory regions */
if (!dom->regions) {
@@ -451,7 +451,7 @@ void sbi_domain_dump(const struct sbi_domain *dom, const char *suffix)
default:
sbi_printf("Unknown\n");
break;
};
}
sbi_printf("Domain%d SysReset %s: %s\n",
dom->index, suffix, (dom->system_reset_allowed) ? "yes" : "no");