diff options
| author | Simon Glass <[email protected]> | 2025-03-15 14:25:22 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-04-03 11:41:54 -0600 |
| commit | 96aa0719b7af4da74197122ac0d7f644023786c1 (patch) | |
| tree | e7fedfa4316c894d5e8c9a69f48e0934a1f19e4b /include | |
| parent | f59fb9846c5a1d129f78b2945a094477388fd346 (diff) | |
sandbox: Correct a typo in mapmem
This should say 'cast', not 'case', so fix it.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/mapmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mapmem.h b/include/mapmem.h index f496c96d16c..8ec03d59f0b 100644 --- a/include/mapmem.h +++ b/include/mapmem.h @@ -33,7 +33,7 @@ static inline phys_addr_t map_to_sysmem(const void *ptr) * 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) |
