lib: sbi: Fix spelling of "address" in sbi_domain.c
authorVagrant Cascadian <vagrant@debian.org>
Fri, 19 Nov 2021 19:37:21 +0000 (11:37 -0800)
committerAnup Patel <anup@brainfault.org>
Tue, 23 Nov 2021 12:22:13 +0000 (17:52 +0530)
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>
lib/sbi/sbi_domain.c

index 33d7ad5..b60915c 100644 (file)
@@ -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;
        }