summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorderaadt <deraadt@NetBSD.org>1993-08-29 13:46:31 +0000
committerderaadt <deraadt@NetBSD.org>1993-08-29 13:46:31 +0000
commit9aed375ba3b78b4076f31558f08a8b59de840ee7 (patch)
treed7664e6aa0c62770568f28f611b300d0db3e89ad /sys/dev
parenta14da754967d215f9789bd48b396b29b24057b77 (diff)
tty XXstart() routines return void
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/com.c6
-rw-r--r--sys/dev/isa/com.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index abd2b6d00c9..d7c67ee2518 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: com.c,v 1.11 1993/07/12 11:37:16 mycroft Exp $
+ * $Id: com.c,v 1.12 1993/08/29 13:47:03 deraadt Exp $
*/
#include "com.h"
@@ -59,7 +59,8 @@
#include "i386/isa/ic/ns16550.h"
#define cominor(d)
-int comprobe(), comattach(), comintr(), comstart(), comparam();
+int comprobe(), comattach(), comintr(), comparam();
+void comstart();
struct isa_driver comdriver = {
comprobe, comattach, "com"
@@ -517,6 +518,7 @@ comparam(tp, t)
return(0);
}
+void
comstart(tp)
register struct tty *tp;
{
diff --git a/sys/dev/isa/com.c b/sys/dev/isa/com.c
index abd2b6d00c9..d7c67ee2518 100644
--- a/sys/dev/isa/com.c
+++ b/sys/dev/isa/com.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: com.c,v 1.11 1993/07/12 11:37:16 mycroft Exp $
+ * $Id: com.c,v 1.12 1993/08/29 13:47:03 deraadt Exp $
*/
#include "com.h"
@@ -59,7 +59,8 @@
#include "i386/isa/ic/ns16550.h"
#define cominor(d)
-int comprobe(), comattach(), comintr(), comstart(), comparam();
+int comprobe(), comattach(), comintr(), comparam();
+void comstart();
struct isa_driver comdriver = {
comprobe, comattach, "com"
@@ -517,6 +518,7 @@ comparam(tp, t)
return(0);
}
+void
comstart(tp)
register struct tty *tp;
{