From 12f7add9f7309d332f377ddf65047c0c5f216bb9 Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Tue, 25 Oct 2016 17:57:31 +0000 Subject: [PATCH] Remove the need for the delay to be zero when MULTIDELAY is undefined, it may be useful to only enable this in some configs. Sponsored by: ABT Systems Ltd --- sys/arm/include/platformvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/include/platformvar.h b/sys/arm/include/platformvar.h index 607e00f99aa8..a80f628c6d5c 100644 --- a/sys/arm/include/platformvar.h +++ b/sys/arm/include/platformvar.h @@ -93,7 +93,7 @@ extern platform_method_t fdt_platform_methods[]; #ifdef MULTIDELAY #define FDT_PLATFORM_CTASSERT(delay) CTASSERT(delay > 0) #else -#define FDT_PLATFORM_CTASSERT(delay) CTASSERT(delay == 0) +#define FDT_PLATFORM_CTASSERT(delay) #endif #define FDT_PLATFORM_DEF2(NAME, VAR_NAME, NAME_STR, size, compatible, \