From: Simon Glass Date: Mon, 28 Oct 2024 12:47:58 +0000 (+0100) Subject: sandbox: Fix comment for nomap_sysmem() function X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-favicon.png?a=commitdiff_plain;h=dc24948a457e2f5cb7c518a9458be851b8b7e9ea;p=u-boot.git sandbox: Fix comment for nomap_sysmem() function This should say 'cast' rather than 'case', so fix it. Signed-off-by: Simon Glass --- diff --git a/arch/sandbox/include/asm/io.h b/arch/sandbox/include/asm/io.h index a23bd64994..3d09170063 100644 --- a/arch/sandbox/include/asm/io.h +++ b/arch/sandbox/include/asm/io.h @@ -235,7 +235,7 @@ static inline void unmap_sysmem(const void *vaddr) * nomap_sysmem() - pass through an address unchanged * * This is used to indicate an address which should NOT be mapped, e.g. in - * SMBIOS tables. Using this function instead of a case shows that the sandbox + * SMBIOS tables. Using this function instead of a cast shows that the sandbox * conversion has been done */ static inline void *nomap_sysmem(phys_addr_t paddr, unsigned long len)