svn commit: r307943 - head/sys/arm/include

Andrew Turner andrew at FreeBSD.org
Tue Oct 25 17:57:32 UTC 2016


Author: andrew
Date: Tue Oct 25 17:57:31 2016
New Revision: 307943
URL: https://svnweb.freebsd.org/changeset/base/307943

Log:
  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

Modified:
  head/sys/arm/include/platformvar.h

Modified: head/sys/arm/include/platformvar.h
==============================================================================
--- head/sys/arm/include/platformvar.h	Tue Oct 25 17:31:57 2016	(r307942)
+++ head/sys/arm/include/platformvar.h	Tue Oct 25 17:57:31 2016	(r307943)
@@ -93,7 +93,7 @@ extern platform_method_t fdt_platform_me
 #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,	\


More information about the svn-src-all mailing list