summaryrefslogtreecommitdiffstats
path: root/sys/gnu/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-09-19 18:55:37 +0000
committerbde <bde@FreeBSD.org>1995-09-19 18:55:37 +0000
commit190b17ed87280b0d691911615b093f2da62f8ac4 (patch)
tree083e432bb7d4d36885717d7d3e4c7b3effacecf4 /sys/gnu/i386
parent85bf2e6eb15393415f53809c3cf9ff8a133490e1 (diff)
downloadFreeBSD-src-190b17ed87280b0d691911615b093f2da62f8ac4.zip
FreeBSD-src-190b17ed87280b0d691911615b093f2da62f8ac4.tar.gz
Fix benign type mismatches in isa interrupt handlers. Many returned int
instead of void.
Diffstat (limited to 'sys/gnu/i386')
-rw-r--r--sys/gnu/i386/isa/nic3009.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/gnu/i386/isa/nic3009.c b/sys/gnu/i386/isa/nic3009.c
index a8cdee7..7796158 100644
--- a/sys/gnu/i386/isa/nic3009.c
+++ b/sys/gnu/i386/isa/nic3009.c
@@ -1,6 +1,6 @@
-static char nic39_id[] = "@(#)$Id: nic3009.c,v 1.6 1995/05/11 19:25:56 rgrimes Exp $";
+static char nic39_id[] = "@(#)$Id: nic3009.c,v 1.7 1995/09/08 11:06:47 bde Exp $";
/*******************************************************************************
- * II - Version 0.1 $Revision: 1.6 $ $State: Exp $
+ * II - Version 0.1 $Revision: 1.7 $ $State: Exp $
*
* Copyright 1994 Dietmar Friede
*******************************************************************************
@@ -10,6 +10,10 @@ static char nic39_id[] = "@(#)$Id: nic3009.c,v 1.6 1995/05/11 19:25:56 rgrim
*
*******************************************************************************
* $Log: nic3009.c,v $
+ * Revision 1.7 1995/09/08 11:06:47 bde
+ * Fix benign type mismatches in devsw functions. 82 out of 299 devsw
+ * functions were wrong.
+ *
* Revision 1.6 1995/05/11 19:25:56 rgrimes
* Fix -Wformat warnings from LINT kernel.
*
@@ -1234,7 +1238,7 @@ nnnicintr(void *gen)
dn_intr(unit,sc);
}
void
-nnicintr(unsigned unit)
+nnicintr(int unit)
{
timeout(nnnicintr, (void *)unit,1);
}
OpenPOWER on IntegriCloud