Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/ep93xx Fix argument mismatch (clockframe * vs. ...



details:   https://anonhg.NetBSD.org/src/rev/dbfbd627e148
branches:  trunk
changeset: 583596:dbfbd627e148
user:      joff <joff%NetBSD.org@localhost>
date:      Sun Aug 14 03:10:16 2005 +0000

description:
Fix argument mismatch (clockframe * vs. irqframe *) in ep93xx_intr_dispatch() that
has been causing compile failures.

diffstat:

 sys/arch/arm/ep93xx/ep93xx_intr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e7358907ea2e -r dbfbd627e148 sys/arch/arm/ep93xx/ep93xx_intr.c
--- a/sys/arch/arm/ep93xx/ep93xx_intr.c Sun Aug 14 03:07:30 2005 +0000
+++ b/sys/arch/arm/ep93xx/ep93xx_intr.c Sun Aug 14 03:10:16 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ep93xx_intr.c,v 1.3 2005/01/05 04:53:50 joff Exp $ */
+/* $NetBSD: ep93xx_intr.c,v 1.4 2005/08/14 03:10:16 joff Exp $ */
 
 /*
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ep93xx_intr.c,v 1.3 2005/01/05 04:53:50 joff Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ep93xx_intr.c,v 1.4 2005/08/14 03:10:16 joff Exp $");
 
 /*
  * Interrupt support for the Cirrus Logic EP93XX
@@ -467,7 +467,7 @@
 }
 
 void
-ep93xx_intr_dispatch(struct clockframe *frame)
+ep93xx_intr_dispatch(struct irqframe *frame)
 {
        struct intrq*           iq;
        struct intrhand*        ih;



Home | Main Index | Thread Index | Old Index