Make it compile again if for some configuration there are no FIQ's ... It
complained about the unused label.
This commit is contained in:
parent
7bace466ad
commit
a425cc29ac
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue