Module Name:    src
Committed By:   riastradh
Date:           Thu Nov 15 04:56:52 UTC 2018

Modified Files:
        src/sys/arch/aarch64/include: param.h

Log Message:
Respect the __HIDE_DELAY kludge like on other ports.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/aarch64/include/param.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/aarch64/include/param.h
diff -u src/sys/arch/aarch64/include/param.h:1.5 src/sys/arch/aarch64/include/param.h:1.6
--- src/sys/arch/aarch64/include/param.h:1.5	Wed Nov 14 20:03:28 2018
+++ src/sys/arch/aarch64/include/param.h	Thu Nov 15 04:56:52 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.5 2018/11/14 20:03:28 jakllsch Exp $ */
+/* $NetBSD: param.h,v 1.6 2018/11/15 04:56:52 riastradh Exp $ */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -131,9 +131,11 @@
 #endif
 
 #ifdef _KERNEL
+#ifndef __HIDE_DELAY
 void delay(unsigned int);
 #define	DELAY(x)	delay(x)
 #endif
+#endif
 /*
  * Compatibility /dev/zero mapping.
  */

Reply via email to