summaryrefslogtreecommitdiffstats
path: root/sys/alpha/tlsb/zs_tlsb.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-03-20 18:58:47 +0000
committerobrien <obrien@FreeBSD.org>2002-03-20 18:58:47 +0000
commita11b0bc7ef9aa0716078fb29c8eeb46df0f454bf (patch)
treeaa4a8b1f00274b707255148923fbee6b3b0e8414 /sys/alpha/tlsb/zs_tlsb.c
parent37ff43589ebd29f29200833b6772e1ea25901790 (diff)
downloadFreeBSD-src-a11b0bc7ef9aa0716078fb29c8eeb46df0f454bf.zip
FreeBSD-src-a11b0bc7ef9aa0716078fb29c8eeb46df0f454bf.tar.gz
Remove __P(). This was tested on the GENERIC kernel.
Diffstat (limited to 'sys/alpha/tlsb/zs_tlsb.c')
-rw-r--r--sys/alpha/tlsb/zs_tlsb.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/alpha/tlsb/zs_tlsb.c b/sys/alpha/tlsb/zs_tlsb.c
index 0e0a706..452df04 100644
--- a/sys/alpha/tlsb/zs_tlsb.c
+++ b/sys/alpha/tlsb/zs_tlsb.c
@@ -84,9 +84,9 @@ static struct cdevsw zs_cdevsw = {
/* flags */ 0,
};
-static void zsstart __P((struct tty *));
-static int zsparam __P((struct tty *, struct termios *));
-static void zsstop __P((struct tty *tp, int flag));
+static void zsstart(struct tty *);
+static int zsparam(struct tty *, struct termios *);
+static void zsstop(struct tty *tp, int flag);
/*
* Helpers for console support.
@@ -109,7 +109,7 @@ static driver_t zs_driver = {
"zs", zs_methods, sizeof (struct zs_softc),
};
-static void zs_poll_intr __P((void *));
+static void zs_poll_intr(void *);
static int zspolltime;
@@ -216,9 +216,9 @@ zs_putc(caddr_t base, int chan, int c)
/*
* Console support
*/
-int zs_cngetc __P((dev_t));
-int zs_cncheckc __P((dev_t));
-void zs_cnputc __P((dev_t, int));
+int zs_cngetc(dev_t);
+int zs_cncheckc(dev_t);
+void zs_cnputc(dev_t, int);
static caddr_t zs_console_addr;
CONS_DRIVER(zs, NULL, NULL, NULL, zs_cngetc, zs_cncheckc, zs_cnputc, NULL);
OpenPOWER on IntegriCloud