diff options
author | phk <phk@FreeBSD.org> | 1995-12-08 23:23:00 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-12-08 23:23:00 +0000 |
commit | a69d1dfbcb7bc187703b1767f289aba2bd4edbb6 (patch) | |
tree | 0408fdddf8ea8eeab5dc960ead9a7c96a2e301bd /sys/i386/isa/b004.c | |
parent | 5a5b07fa54887595e0725dba442af441c842786a (diff) | |
download | FreeBSD-src-a69d1dfbcb7bc187703b1767f289aba2bd4edbb6.zip FreeBSD-src-a69d1dfbcb7bc187703b1767f289aba2bd4edbb6.tar.gz |
Julian forgot to make the *devsw structures static.
Diffstat (limited to 'sys/i386/isa/b004.c')
-rw-r--r-- | sys/i386/isa/b004.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/isa/b004.c b/sys/i386/isa/b004.c index d39231a..ff2a3f2 100644 --- a/sys/i386/isa/b004.c +++ b/sys/i386/isa/b004.c @@ -130,7 +130,7 @@ static d_ioctl_t bquioctl; static d_select_t bquselect; #define CDEV_MAJOR 8 -struct cdevsw bqu_cdevsw = +static struct cdevsw bqu_cdevsw = { bquopen, bquclose, bquread, bquwrite, /*8*/ bquioctl, nostop, nullreset, nodevtotty,/* tputer */ bquselect, nommap, NULL, "bqu", NULL, -1 }; |