s/__diagused/__debugused/ for variables used in KDASSERT().

This commit is contained in:
uwe 2014-10-13 22:24:43 +00:00
parent 30360bde23
commit 3895086aa0
1 changed files with 4 additions and 4 deletions

View File

@ -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 <nonaka@netbsd.org>
@ -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;