Follow up the type change of i80200_extirq_dispatch which now takes
an irqframe* and not a clockframe* as argument.
This commit is contained in:
parent
cdbefcff7b
commit
1aaad1fbee
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: becc_icu.c,v 1.3 2003/07/15 00:24:52 lukem Exp $ */
|
||||
/* $NetBSD: becc_icu.c,v 1.4 2005/08/14 19:23:17 he Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 Wasabi Systems, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: becc_icu.c,v 1.3 2003/07/15 00:24:52 lukem Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: becc_icu.c,v 1.4 2005/08/14 19:23:17 he Exp $");
|
||||
|
||||
#ifndef EVBARM_SPL_NOINLINE
|
||||
#define EVBARM_SPL_NOINLINE
|
||||
|
@ -121,7 +121,7 @@ const char *becc_irqnames[] = {
|
|||
"irq 31",
|
||||
};
|
||||
|
||||
void becc_intr_dispatch(struct clockframe *frame);
|
||||
void becc_intr_dispatch(struct irqframe *frame);
|
||||
|
||||
static __inline uint32_t
|
||||
becc_icsr_read(void)
|
||||
|
@ -452,7 +452,7 @@ becc_intr_disestablish(void *cookie)
|
|||
}
|
||||
|
||||
void
|
||||
becc_intr_dispatch(struct clockframe *frame)
|
||||
becc_intr_dispatch(struct irqframe *frame)
|
||||
{
|
||||
struct intrq *iq;
|
||||
struct intrhand *ih;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: i80200_icu.c,v 1.6 2003/07/15 00:24:52 lukem Exp $ */
|
||||
/* $NetBSD: i80200_icu.c,v 1.7 2005/08/14 19:23:17 he Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 Wasabi Systems, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: i80200_icu.c,v 1.6 2003/07/15 00:24:52 lukem Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: i80200_icu.c,v 1.7 2005/08/14 19:23:17 he Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -54,10 +54,10 @@ __KERNEL_RCSID(0, "$NetBSD: i80200_icu.c,v 1.6 2003/07/15 00:24:52 lukem Exp $")
|
|||
static __volatile uint32_t intctl;
|
||||
|
||||
/* Pointer to board-specific external IRQ dispatcher. */
|
||||
void (*i80200_extirq_dispatch)(struct clockframe *);
|
||||
void (*i80200_extirq_dispatch)(struct irqframe *);
|
||||
|
||||
static void
|
||||
i80200_default_extirq_dispatch(struct clockframe *framep)
|
||||
i80200_default_extirq_dispatch(struct irqframe *framep)
|
||||
{
|
||||
|
||||
panic("external IRQ with no dispatch routine");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iq80310_intr.c,v 1.20 2003/07/15 00:25:02 lukem Exp $ */
|
||||
/* $NetBSD: iq80310_intr.c,v 1.21 2005/08/14 19:23:17 he Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001, 2002 Wasabi Systems, Inc.
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: iq80310_intr.c,v 1.20 2003/07/15 00:25:02 lukem Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: iq80310_intr.c,v 1.21 2005/08/14 19:23:17 he Exp $");
|
||||
|
||||
#ifndef EVBARM_SPL_NOINLINE
|
||||
#define EVBARM_SPL_NOINLINE
|
||||
|
@ -95,7 +95,7 @@ static const int si_to_ipl[SI_NQUEUES] = {
|
|||
IPL_SOFTSERIAL, /* SI_SOFTSERIAL */
|
||||
};
|
||||
|
||||
void iq80310_intr_dispatch(struct clockframe *frame);
|
||||
void iq80310_intr_dispatch(struct irqframe *frame);
|
||||
|
||||
static __inline uint32_t
|
||||
iq80310_intstat_read(void)
|
||||
|
@ -408,7 +408,7 @@ iq80310_intr_disestablish(void *cookie)
|
|||
}
|
||||
|
||||
void
|
||||
iq80310_intr_dispatch(struct clockframe *frame)
|
||||
iq80310_intr_dispatch(struct irqframe *frame)
|
||||
{
|
||||
struct intrq *iq;
|
||||
struct intrhand *ih;
|
||||
|
|
Loading…
Reference in New Issue