include/nuttx/cache.h: Fix a copy-paste error.

This commit is contained in:
Gregory Nutt 2020-03-04 09:33:55 -06:00 committed by Alan Carvalho de Assis
parent cd0a23e50e
commit 432f8b1e8d

View File

@ -210,7 +210,7 @@ void up_disable_dcache(void);
#ifdef CONFIG_ARCH_DCACHE #ifdef CONFIG_ARCH_DCACHE
void up_invalidate_dcache(uintptr_t start, uintptr_t end); void up_invalidate_dcache(uintptr_t start, uintptr_t end);
#else #else
# define up_disable_dcache(start, end) # define up_invalidate_dcache(start, end)
#endif #endif
/**************************************************************************** /****************************************************************************