mirror of
https://github.com/apache/nuttx.git
synced 2026-09-03 07:33:00 +00:00
xtensa:cache: fix typo error
use addr instead of add
This commit is contained in:
parent
014d6d026c
commit
26b4bb3075
1 changed files with 1 additions and 1 deletions
|
|
@ -463,7 +463,7 @@ void up_coherent_dcache(uintptr_t addr, size_t len)
|
|||
if (len > 0)
|
||||
{
|
||||
up_clean_dcache(addr, addr + len);
|
||||
up_invalidate_icache(addr, add + len);
|
||||
up_invalidate_icache(addr, addr + len);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue