aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fdc
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/fdc
parent04228afa84a08b15d6e0c92e80717a7e04ef83bc (diff)
Notes
Diffstat (limited to 'sys/dev/fdc')
-rw-r--r--sys/dev/fdc/fdc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c
index e1b34366080a..78c4840bf3cb 100644
--- a/sys/dev/fdc/fdc.c
+++ b/sys/dev/fdc/fdc.c
@@ -43,7 +43,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
- * $Id: fd.c,v 1.72 1995/11/28 09:41:00 julian Exp $
+ * $Id: fd.c,v 1.73 1995/12/08 11:14:10 julian Exp $
*
*/
@@ -350,11 +350,11 @@ static d_strategy_t fdstrategy;
#define CDEV_MAJOR 9
#define BDEV_MAJOR 2
extern struct cdevsw fd_cdevsw;
-struct bdevsw fd_bdevsw =
+static struct bdevsw fd_bdevsw =
{ Fdopen, fdclose, fdstrategy, fdioctl, /*2*/
nxdump, zerosize, 0, "fd", &fd_cdevsw, -1 };
-struct cdevsw fd_cdevsw =
+static struct cdevsw fd_cdevsw =
{ Fdopen, fdclose, rawread, rawwrite, /*9*/
fdioctl, nostop, nullreset, nodevtotty,
seltrue, nommap, fdstrategy, "fd",