Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch Follow up the type change of i80200_extirq_dispatch...
details: https://anonhg.NetBSD.org/src/rev/026ffb26b2ba
branches: trunk
changeset: 583615:026ffb26b2ba
user: he <he%NetBSD.org@localhost>
date: Sun Aug 14 19:23:17 2005 +0000
description:
Follow up the type change of i80200_extirq_dispatch which now takes
an irqframe* and not a clockframe* as argument.
diffstat:
sys/arch/arm/xscale/becc_icu.c | 8 ++++----
sys/arch/arm/xscale/i80200_icu.c | 8 ++++----
sys/arch/evbarm/iq80310/iq80310_intr.c | 8 ++++----
3 files changed, 12 insertions(+), 12 deletions(-)
diffs (103 lines):
diff -r 360503ac3d14 -r 026ffb26b2ba sys/arch/arm/xscale/becc_icu.c
--- a/sys/arch/arm/xscale/becc_icu.c Sun Aug 14 19:12:02 2005 +0000
+++ b/sys/arch/arm/xscale/becc_icu.c Sun Aug 14 19:23:17 2005 +0000
@@ -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 @@
"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 @@
}
void
-becc_intr_dispatch(struct clockframe *frame)
+becc_intr_dispatch(struct irqframe *frame)
{
struct intrq *iq;
struct intrhand *ih;
diff -r 360503ac3d14 -r 026ffb26b2ba sys/arch/arm/xscale/i80200_icu.c
--- a/sys/arch/arm/xscale/i80200_icu.c Sun Aug 14 19:12:02 2005 +0000
+++ b/sys/arch/arm/xscale/i80200_icu.c Sun Aug 14 19:23:17 2005 +0000
@@ -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 @@
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");
diff -r 360503ac3d14 -r 026ffb26b2ba sys/arch/evbarm/iq80310/iq80310_intr.c
--- a/sys/arch/evbarm/iq80310/iq80310_intr.c Sun Aug 14 19:12:02 2005 +0000
+++ b/sys/arch/evbarm/iq80310/iq80310_intr.c Sun Aug 14 19:23:17 2005 +0000
@@ -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 @@
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 @@
}
void
-iq80310_intr_dispatch(struct clockframe *frame)
+iq80310_intr_dispatch(struct irqframe *frame)
{
struct intrq *iq;
struct intrhand *ih;
Home |
Main Index |
Thread Index |
Old Index