Module Name:    src
Committed By:   riastradh
Date:           Sun Dec  8 20:04:21 UTC 2024

Modified Files:
        src/sys/arch/arm/cortex: gicv3_its.c

Log Message:
gicv3_its.c: Do-nothing macros must expand to `__nothing', not empty.

No functional change intended -- unless this was accidentally broken
before.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/arm/cortex/gicv3_its.c

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/arm/cortex/gicv3_its.c
diff -u src/sys/arch/arm/cortex/gicv3_its.c:1.36 src/sys/arch/arm/cortex/gicv3_its.c:1.37
--- src/sys/arch/arm/cortex/gicv3_its.c:1.36	Sat Dec  7 19:53:07 2024
+++ src/sys/arch/arm/cortex/gicv3_its.c	Sun Dec  8 20:04:21 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: gicv3_its.c,v 1.36 2024/12/07 19:53:07 jmcneill Exp $ */
+/* $NetBSD: gicv3_its.c,v 1.37 2024/12/08 20:04:21 riastradh Exp $ */
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 #define _INTR_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gicv3_its.c,v 1.36 2024/12/07 19:53:07 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gicv3_its.c,v 1.37 2024/12/08 20:04:21 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/kmem.h>
@@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: gicv3_its.c,
 #ifdef ITS_DEBUG
 #define DPRINTF(x)	printf x
 #else
-#define DPRINTF(x)
+#define DPRINTF(x)	__nothing
 #endif
 
 /*

Reply via email to