Module Name: src
Committed By: mrg
Date: Mon Dec 16 15:44:41 UTC 2013
Modified Files:
src/sys/arch/landisk/landisk: intr.c
Log Message:
apply __diagused where appropriate.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 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.5 src/sys/arch/landisk/landisk/intr.c:1.6
--- src/sys/arch/landisk/landisk/intr.c:1.5 Sat Jan 21 19:44:30 2012
+++ src/sys/arch/landisk/landisk/intr.c Mon Dec 16 15:44:41 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.5 2012/01/21 19:44:30 nonaka Exp $ */
+/* $NetBSD: intr.c,v 1.6 2013/12/16 15:44:41 mrg Exp $ */
/*-
* Copyright (C) 2005 NONAKA Kimihiro <[email protected]>
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.5 2012/01/21 19:44:30 nonaka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.6 2013/12/16 15:44:41 mrg 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;
+ struct intrhand *p, *q __diagused;
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;
+ struct intrhand *p, *q __diagused;
struct extintr_handler *eih;
int irq;
int cnt;