diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2021-11-19 11:37:21 -0800 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2021-11-23 17:52:13 +0530 |
commit | 22d556d26809775e2ac19251e5df9075434ee66e (patch) | |
tree | 942edbb98098396525a981c6ff22bff4ba6c2a7e | |
parent | 52af6e4b52d0ea1d687121bfba0954c2621d2629 (diff) |
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>
-rw-r--r-- | lib/sbi/sbi_domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_domain.c b/lib/sbi/sbi_domain.c index 33d7ad5..b60915c 100644 --- a/lib/sbi/sbi_domain.c +++ b/lib/sbi/sbi_domain.c @@ -295,7 +295,7 @@ static int sanitize_domain(const struct sbi_platform *plat, /* Check next address and next mode*/ if (!sbi_domain_check_addr(dom, dom->next_addr, dom->next_mode, 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); return SBI_EINVAL; } |