summaryrefslogtreecommitdiffstats
path: root/sys/dev/snp/snp.c
diff options
context:
space:
mode:
authorrodrigc <rodrigc@FreeBSD.org>2007-03-23 22:48:44 +0000
committerrodrigc <rodrigc@FreeBSD.org>2007-03-23 22:48:44 +0000
commit12863b36f7ecab73d884b29ba3ac3b6187f1ec08 (patch)
tree7c42f6d602d4ae4be1b5f94c18e8ae73a068d54c /sys/dev/snp/snp.c
parentade9ba91cb6ae9a2ab470eb72605bf0cf2a3e298 (diff)
downloadFreeBSD-src-12863b36f7ecab73d884b29ba3ac3b6187f1ec08.zip
FreeBSD-src-12863b36f7ecab73d884b29ba3ac3b6187f1ec08.tar.gz
Switch to ANSI function declarations.
Diffstat (limited to 'sys/dev/snp/snp.c')
-rw-r--r--sys/dev/snp/snp.c70
1 files changed, 16 insertions, 54 deletions
diff --git a/sys/dev/snp/snp.c b/sys/dev/snp/snp.c
index 4008bae..44a2d7a 100644
--- a/sys/dev/snp/snp.c
+++ b/sys/dev/snp/snp.c
@@ -137,9 +137,7 @@ ttytosnp(struct tty *tp)
}
static int
-snplclose(tp, flag)
- struct tty *tp;
- int flag;
+snplclose(struct tty *tp, int flag)
{
struct snoop *snp;
int error;
@@ -153,10 +151,7 @@ snplclose(tp, flag)
}
static int
-snplwrite(tp, uio, flag)
- struct tty *tp;
- struct uio *uio;
- int flag;
+snplwrite(struct tty *tp, struct uio *uio, int flag)
{
struct iovec iov;
struct uio uio2;
@@ -196,8 +191,7 @@ snplwrite(tp, uio, flag)
}
static struct tty *
-snpdevtotty(dev)
- struct cdev *dev;
+snpdevtotty(struct cdev *dev)
{
struct cdevsw *cdp;
struct tty *tp;
@@ -219,10 +213,7 @@ snpdevtotty(dev)
*/
static int
-snpwrite(dev, uio, flag)
- struct cdev *dev;
- struct uio *uio;
- int flag;
+snpwrite(struct cdev *dev, struct uio *uio, int flag)
{
struct snoop *snp;
struct tty *tp;
@@ -257,10 +248,7 @@ tty_input:
static int
-snpread(dev, uio, flag)
- struct cdev *dev;
- struct uio *uio;
- int flag;
+snpread(struct cdev *dev, struct uio *uio, int flag)
{
struct snoop *snp;
int error, len, n, nblen, s;
@@ -323,10 +311,7 @@ snpread(dev, uio, flag)
}
static int
-snp_in(snp, buf, n)
- struct snoop *snp;
- char *buf;
- int n;
+snp_in(struct snoop *snp, char *buf, int n)
{
int s_free, s_tail;
int s, len, nblen;
@@ -403,10 +388,7 @@ snp_in(snp, buf, n)
}
static int
-snpopen(dev, flag, mode, td)
- struct cdev *dev;
- int flag, mode;
- struct thread *td;
+snpopen(struct cdev *dev, int flag, int mode, struct thread *td)
{
struct snoop *snp;
@@ -441,8 +423,7 @@ snpopen(dev, flag, mode, td)
static int
-snp_detach(snp)
- struct snoop *snp;
+snp_detach(struct snoop *snp)
{
struct tty *tp;
@@ -475,11 +456,7 @@ detach_notty:
}
static int
-snpclose(dev, flags, fmt, td)
- struct cdev *dev;
- int flags;
- int fmt;
- struct thread *td;
+snpclose(struct cdev *dev, int flags, int fmt, struct thread *td)
{
struct snoop *snp;
@@ -495,8 +472,7 @@ snpclose(dev, flags, fmt, td)
}
static int
-snp_down(snp)
- struct snoop *snp;
+snp_down(struct snoop *snp)
{
if (snp->snp_blen != SNOOP_MINLEN) {
@@ -510,12 +486,8 @@ snp_down(snp)
}
static int
-snpioctl(dev, cmd, data, flags, td)
- struct cdev *dev;
- u_long cmd;
- caddr_t data;
- int flags;
- struct thread *td;
+snpioctl(struct cdev *dev, u_long cmd, caddr_t data, int flags,
+ struct thread *td)
{
struct snoop *snp;
struct tty *tp, *tpo;
@@ -611,10 +583,7 @@ snpioctl(dev, cmd, data, flags, td)
}
static int
-snppoll(dev, events, td)
- struct cdev *dev;
- int events;
- struct thread *td;
+snppoll(struct cdev *dev, int events, struct thread *td)
{
struct snoop *snp;
int revents;
@@ -636,12 +605,8 @@ snppoll(dev, events, td)
}
static void
-snp_clone(arg, cred, name, namelen, dev)
- void *arg;
- struct ucred *cred;
- char *name;
- int namelen;
- struct cdev **dev;
+snp_clone(void *arg, struct ucred *cred, char *name, int namelen,
+ struct cdev **dev)
{
int u, i;
@@ -660,10 +625,7 @@ snp_clone(arg, cred, name, namelen, dev)
}
static int
-snp_modevent(mod, type, data)
- module_t mod;
- int type;
- void *data;
+snp_modevent(module_t mod, int type, void *data)
{
static eventhandler_tag eh_tag;
OpenPOWER on IntegriCloud