aboutsummaryrefslogtreecommitdiff
path: root/include/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/platform.h')
-rw-r--r--include/platform.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/platform.h b/include/platform.h
index 21224fabf..cdc1151ad 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -248,12 +248,10 @@ typedef unsigned smalluint;
248 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \ 248 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
249 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__) 249 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
250#define BB_MMU 0 250#define BB_MMU 0
251#define BB_NOMMU 1
252#define USE_FOR_NOMMU(...) __VA_ARGS__ 251#define USE_FOR_NOMMU(...) __VA_ARGS__
253#define USE_FOR_MMU(...) 252#define USE_FOR_MMU(...)
254#else 253#else
255#define BB_MMU 1 254#define BB_MMU 1
256/* BB_NOMMU is not defined in this case! */
257#define USE_FOR_NOMMU(...) 255#define USE_FOR_NOMMU(...)
258#define USE_FOR_MMU(...) __VA_ARGS__ 256#define USE_FOR_MMU(...) __VA_ARGS__
259#endif 257#endif