Sprinkle static.

This commit is contained in:
thorpej 2005-12-08 03:08:12 +00:00
parent 59898de0b4
commit b5d9c8bb96
1 changed files with 11 additions and 14 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: tty_ptm.c,v 1.4 2004/11/30 04:25:44 christos Exp $ */ /* $NetBSD: tty_ptm.c,v 1.5 2005/12/08 03:08:12 thorpej Exp $ */
/*- /*-
* Copyright (c) 2004 The NetBSD Foundation, Inc. * Copyright (c) 2004 The NetBSD Foundation, Inc.
@ -34,7 +34,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tty_ptm.c,v 1.4 2004/11/30 04:25:44 christos Exp $"); __KERNEL_RCSID(0, "$NetBSD: tty_ptm.c,v 1.5 2005/12/08 03:08:12 thorpej Exp $");
#include "opt_ptm.h" #include "opt_ptm.h"
@ -81,21 +81,13 @@ static int pty_alloc_slave(struct proc *, int *, dev_t);
void ptmattach(int); void ptmattach(int);
dev_type_open(ptmopen);
dev_type_close(ptmclose);
dev_type_ioctl(ptmioctl);
const struct cdevsw ptm_cdevsw = {
ptmopen, ptmclose, noread, nowrite, ptmioctl,
nullstop, notty, nopoll, nommap, nokqfilter, D_TTY
};
dev_t dev_t
pty_makedev(char ms, int minor) pty_makedev(char ms, int minor)
{ {
return makedev(ms == 't' ? pts_major : ptc_major, minor); return makedev(ms == 't' ? pts_major : ptc_major, minor);
} }
static dev_t static dev_t
pty_getfree(void) pty_getfree(void)
{ {
@ -328,7 +320,7 @@ ptmattach(int n)
#endif #endif
} }
int static int
/*ARGSUSED*/ /*ARGSUSED*/
ptmopen(dev_t dev, int flag, int mode, struct proc *p) ptmopen(dev_t dev, int flag, int mode, struct proc *p)
{ {
@ -348,14 +340,14 @@ ptmopen(dev_t dev, int flag, int mode, struct proc *p)
} }
} }
int static int
/*ARGSUSED*/ /*ARGSUSED*/
ptmclose(dev_t dev, int flag, int mode, struct proc *p) ptmclose(dev_t dev, int flag, int mode, struct proc *p)
{ {
return (0); return (0);
} }
int static int
/*ARGSUSED*/ /*ARGSUSED*/
ptmioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p) ptmioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
{ {
@ -389,3 +381,8 @@ bad:
return error; return error;
} }
#endif #endif
const struct cdevsw ptm_cdevsw = {
ptmopen, ptmclose, noread, nowrite, ptmioctl,
nullstop, notty, nopoll, nommap, nokqfilter, D_TTY
};