diff options
| author | Vagrant Cascadian <[email protected]> | 2021-11-19 11:37:21 -0800 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 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 <[email protected]>
Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Xiang W <[email protected]>
| -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 33d7ad56..b60915c3 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; } |
