Fix argument mismatch (clockframe * vs. irqframe *) in ep93xx_intr_dispatch() that
has been causing compile failures.
This commit is contained in:
parent
02b3ec89cf
commit
f0e1f44063
|
@ -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 @@ ep93xx_intr_disestablish(void *cookie)
|
|||
}
|
||||
|
||||
void
|
||||
ep93xx_intr_dispatch(struct clockframe *frame)
|
||||
ep93xx_intr_dispatch(struct irqframe *frame)
|
||||
{
|
||||
struct intrq* iq;
|
||||
struct intrhand* ih;
|
||||
|
|
Loading…
Reference in New Issue