This is an automated email from the ASF dual-hosted git repository.
acassis pushed a commit to branch pr431
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/pr431 by this push:
new 432f8b1 include/nuttx/cache.h: Fix a copy-paste error.
432f8b1 is described below
commit 432f8b1e8d23281b1018d1e4eeb860af57447dcc
Author: Gregory Nutt <[email protected]>
AuthorDate: Wed Mar 4 09:33:55 2020 -0600
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 0f6d288..407b9b8 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
/****************************************************************************