From e4a4f09fa839ef541cb6b08dd39e8d7b89beab0e Mon Sep 17 00:00:00 2001 From: scw Date: Sun, 11 Mar 2001 20:24:52 +0000 Subject: [PATCH] Make this compile again; chan_attn() prototype has changed. --- sys/arch/mvme68k/dev/if_ie.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys/arch/mvme68k/dev/if_ie.c b/sys/arch/mvme68k/dev/if_ie.c index a98a6570444a..00e11b2524ee 100644 --- a/sys/arch/mvme68k/dev/if_ie.c +++ b/sys/arch/mvme68k/dev/if_ie.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_ie.c,v 1.9 2001/01/22 22:28:44 bjh21 Exp $ */ +/* $NetBSD: if_ie.c,v 1.10 2001/03/11 20:24:52 scw Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -84,7 +84,7 @@ extern struct cfdriver ie_cd; static void ie_reset __P((struct ie_softc *, int)); static int ie_intrhook __P((struct ie_softc *, int)); static void ie_hwinit __P((struct ie_softc *)); -static void ie_atten __P((struct ie_softc *)); +static void ie_atten __P((struct ie_softc *, int)); static void ie_copyin __P((struct ie_softc *, void *, int, size_t)); static void ie_copyout __P((struct ie_softc *, const void *, int, size_t)); @@ -162,9 +162,11 @@ ie_hwinit(sc) pcc2_reg_write(sys_pcctwo, PCC2REG_ETH_ICSR, reg); } +/* ARGSUSED */ static void -ie_atten(sc) +ie_atten(sc, reason) struct ie_softc *sc; + int reason; { struct ie_pcctwo_softc *ps;