Make it compile again if for some configuration there are no FIQ's ... It

complained about the unused label.
This commit is contained in:
reinoud 2001-09-10 02:21:42 +00:00
parent 7bace466ad
commit a425cc29ac
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: irq.c,v 1.21 2001/08/26 12:25:38 bjh21 Exp $ */
/* $NetBSD: irq.c,v 1.22 2001/09/10 02:21:42 reinoud Exp $ */
/*-
* Copyright (c) 2000, 2001 Ben Harris
@ -33,7 +33,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: irq.c,v 1.21 2001/08/26 12:25:38 bjh21 Exp $");
__RCSID("$NetBSD: irq.c,v 1.22 2001/09/10 02:21:42 reinoud Exp $");
#include <sys/device.h>
#include <sys/kernel.h> /* for cold */
@ -189,7 +189,10 @@ irq_handler(struct irqframe *irqf)
"mask = 0x%x\n", status, s, irqmask[s]);
Debugger();
}
#if NFIQ > 0
handled:
#endif /* NFIQ > 0 */
#if 0
printf(" handled\n");
#endif