lib: sbi: Fix spelling of "address" in sbi_domain.c

Fix a spelling typo in error print.

Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Xiang W <wxjstz@126.com>
This commit is contained in:
Vagrant Cascadian
2021-11-19 11:37:21 -08:00
committed by Anup Patel
parent 52af6e4b52
commit 22d556d268

View File

@@ -295,7 +295,7 @@ static int sanitize_domain(const struct sbi_platform *plat,
/* Check next address and next mode*/ /* Check next address and next mode*/
if (!sbi_domain_check_addr(dom, dom->next_addr, dom->next_mode, if (!sbi_domain_check_addr(dom, dom->next_addr, dom->next_mode,
SBI_DOMAIN_EXECUTE)) { SBI_DOMAIN_EXECUTE)) {
sbi_printf("%s: %s next booting stage addres 0x%lx can't " sbi_printf("%s: %s next booting stage address 0x%lx can't "
"execute\n", __func__, dom->name, dom->next_addr); "execute\n", __func__, dom->name, dom->next_addr);
return SBI_EINVAL; return SBI_EINVAL;
} }