aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/sio
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-12-08 23:23:00 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-12-08 23:23:00 +0000
commitd2f265fab89fec2b4d450a74eea4489401c61b1a (patch)
tree0408fdddf8ea8eeab5dc960ead9a7c96a2e301bd /sys/dev/sio
parent04228afa84a08b15d6e0c92e80717a7e04ef83bc (diff)
downloadsrc-d2f265fab89fec2b4d450a74eea4489401c61b1a.tar.gz
src-d2f265fab89fec2b4d450a74eea4489401c61b1a.zip
Julian forgot to make the *devsw structures static.
Notes
Notes: svn path=/head/; revision=12678
Diffstat (limited to 'sys/dev/sio')
-rw-r--r--sys/dev/sio/sio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index d44d7bcf12e8..61cd485b5441 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: sio.c,v 1.124 1995/12/06 23:43:07 bde Exp $
+ * $Id: sio.c,v 1.125 1995/12/08 11:15:12 julian Exp $
*/
#include "sio.h"
@@ -311,7 +311,7 @@ static d_stop_t siostop;
static d_ttycv_t siodevtotty;
#define CDEV_MAJOR 28
-struct cdevsw sio_cdevsw =
+static struct cdevsw sio_cdevsw =
{ sioopen, sioclose, sioread, siowrite, /*28*/
sioioctl, siostop, nxreset, siodevtotty,/* sio */
ttselect, nommap, NULL, driver_name, NULL, -1 };