aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-09-19 18:55:37 +0000
committerBruce Evans <bde@FreeBSD.org>1995-09-19 18:55:37 +0000
commit2e69f359d1ac1574cf0094be77c6458e94b1627c (patch)
tree083e432bb7d4d36885717d7d3e4c7b3effacecf4 /sys/dev
parent0b73305bddacf29a3ea801c7e8875409e0175ed3 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ie/if_ie.c6
-rw-r--r--sys/dev/scd/scd.c8
2 files changed, 3 insertions, 11 deletions
diff --git a/sys/dev/ie/if_ie.c b/sys/dev/ie/if_ie.c
index 605553f6c1c4e..c5d4d95b8239c 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;
}
/*
diff --git a/sys/dev/scd/scd.c b/sys/dev/scd/scd.c
index 6a8ee5d55df5e..b5aacd8b3aa24 100644
--- a/sys/dev/scd/scd.c
+++ b/sys/dev/scd/scd.c
@@ -41,7 +41,7 @@
*/
-/* $Id: scd.c,v 1.5 1995/05/30 08:03:02 rgrimes Exp $ */
+/* $Id: scd.c,v 1.6 1995/09/08 11:07:55 bde Exp $ */
/* Please send any comments to micke@dynas.se */
@@ -500,12 +500,6 @@ scdsize(dev_t dev)
return -1;
}
-void
-scdintr()
-{
- return;
-}
-
/***************************************************************
* lower level of driver starts here
**************************************************************/