summaryrefslogtreecommitdiffstats
path: root/sys/dev/ie
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/dev/ie
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/dev/ie')
-rw-r--r--sys/dev/ie/if_ie.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c
index 605553f..c5d4d95 100644
--- a/sys/dev/ie/if_ie.c
+++ b/sys/dev/ie/if_ie.c
@@ -43,7 +43,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: if_ie.c,v 1.24 1995/05/30 08:02:13 rgrimes Exp $
+ * $Id: if_ie.c,v 1.25 1995/08/16 16:12:32 bde Exp $
*/
/*
@@ -617,7 +617,7 @@ ieattach(dvp)
/*
* What to do upon receipt of an interrupt.
*/
-int ieintr(unit)
+void ieintr(unit)
int unit;
{
register struct ie_softc *ie = &ie_softc[unit];
@@ -682,8 +682,6 @@ loop:
/* Clear the interrupt latch on the 3C507. */
if (ie->hard_type == IE_3C507)
outb(PORT + IE507_ICTRL, 1);
-
- return unit;
}
/*
OpenPOWER on IntegriCloud