From 432f8b1e8d23281b1018d1e4eeb860af57447dcc Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 4 Mar 2020 09:33:55 -0600 Subject: [PATCH] include/nuttx/cache.h: Fix a copy-paste error. --- include/nuttx/cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/cache.h b/include/nuttx/cache.h index 0f6d2889fe..407b9b871f 100644 --- a/include/nuttx/cache.h +++ b/include/nuttx/cache.h @@ -210,7 +210,7 @@ void up_disable_dcache(void); #ifdef CONFIG_ARCH_DCACHE void up_invalidate_dcache(uintptr_t start, uintptr_t end); #else -# define up_disable_dcache(start, end) +# define up_invalidate_dcache(start, end) #endif /****************************************************************************