Module Name: src
Committed By: uwe
Date: Mon Oct 13 22:24:43 UTC 2014
Modified Files:
src/sys/arch/landisk/landisk: intr.c
Log Message:
s/__diagused/__debugused/ for variables used in KDASSERT().
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/landisk/landisk/intr.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/landisk/landisk/intr.c
diff -u src/sys/arch/landisk/landisk/intr.c:1.6 src/sys/arch/landisk/landisk/intr.c:1.7
--- src/sys/arch/landisk/landisk/intr.c:1.6 Mon Dec 16 15:44:41 2013
+++ src/sys/arch/landisk/landisk/intr.c Mon Oct 13 22:24:43 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.6 2013/12/16 15:44:41 mrg Exp $ */
+/* $NetBSD: intr.c,v 1.7 2014/10/13 22:24:43 uwe Exp $ */
/*-
* Copyright (C) 2005 NONAKA Kimihiro <[email protected]>
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.6 2013/12/16 15:44:41 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.7 2014/10/13 22:24:43 uwe Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -252,7 +252,7 @@ void
extintr_enable(void *aux)
{
struct intrhand *ih = aux;
- struct intrhand *p, *q __diagused;
+ struct intrhand *p, *q __debugused;
struct extintr_handler *eih;
int irq;
int cnt;
@@ -288,7 +288,7 @@ void
extintr_disable(void *aux)
{
struct intrhand *ih = aux;
- struct intrhand *p, *q __diagused;
+ struct intrhand *p, *q __debugused;
struct extintr_handler *eih;
int irq;
int cnt;