diff options
| -rw-r--r-- | sys/conf/majors | 5 | ||||
| -rw-r--r-- | sys/i386/conf/majors.i386 | 5 | ||||
| -rw-r--r-- | sys/i386/isa/wfd.c | 4 | ||||
| -rw-r--r-- | sys/pc98/pc98/wfd.c | 4 |
4 files changed, 8 insertions, 10 deletions
diff --git a/sys/conf/majors b/sys/conf/majors index 656a5d383aca..4bd40f91a65c 100644 --- a/sys/conf/majors +++ b/sys/conf/majors @@ -1,4 +1,4 @@ -$Id: majors.i386,v 1.25 1998/01/26 06:11:14 julian Exp $ +$Id: majors.i386,v 1.26 1998/02/13 13:00:02 phk Exp $ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. @@ -14,7 +14,7 @@ The most "complete" version of this will be the one in FreeBSD-current. blkdev name comments 0 wd ST506 disk controller (with IDE extensions) -1 ?? unassigned? +1 wfd ATAPI Floppy client of "ata" 2 fd floppy disk 3 wt QIC-02/36 tape 4 sd SCSI "disk" type @@ -37,7 +37,6 @@ blkdev name comments 21 ccd concatenated disk 22 gd Geometry disk. 23 worm SCSI "worm type" -24 wfd ATAPI Floppy client of "ata" chrdev name comments 0 cn console 1 ctty /dev/tty diff --git a/sys/i386/conf/majors.i386 b/sys/i386/conf/majors.i386 index 656a5d383aca..4bd40f91a65c 100644 --- a/sys/i386/conf/majors.i386 +++ b/sys/i386/conf/majors.i386 @@ -1,4 +1,4 @@ -$Id: majors.i386,v 1.25 1998/01/26 06:11:14 julian Exp $ +$Id: majors.i386,v 1.26 1998/02/13 13:00:02 phk Exp $ Hopefully, this list will one day be obsoleted by DEVFS, but for now this is the current allocation of device major numbers. @@ -14,7 +14,7 @@ The most "complete" version of this will be the one in FreeBSD-current. blkdev name comments 0 wd ST506 disk controller (with IDE extensions) -1 ?? unassigned? +1 wfd ATAPI Floppy client of "ata" 2 fd floppy disk 3 wt QIC-02/36 tape 4 sd SCSI "disk" type @@ -37,7 +37,6 @@ blkdev name comments 21 ccd concatenated disk 22 gd Geometry disk. 23 worm SCSI "worm type" -24 wfd ATAPI Floppy client of "ata" chrdev name comments 0 cn console 1 ctty /dev/tty diff --git a/sys/i386/isa/wfd.c b/sys/i386/isa/wfd.c index 0683dba30b4b..47343001c9b9 100644 --- a/sys/i386/isa/wfd.c +++ b/sys/i386/isa/wfd.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: wfd.c,v 1.6 1998/02/01 21:57:49 bde Exp $ + * $Id: wfd.c,v 1.7 1998/02/09 06:08:44 eivind Exp $ */ /* @@ -58,7 +58,7 @@ static d_ioctl_t wfdioctl; static d_strategy_t wfdstrategy; #define CDEV_MAJOR 87 -#define BDEV_MAJOR 24 +#define BDEV_MAJOR 1 static struct cdevsw wfd_cdevsw; static struct bdevsw wfd_bdevsw = { wfdbopen, wfdbclose, wfdstrategy, wfdioctl, diff --git a/sys/pc98/pc98/wfd.c b/sys/pc98/pc98/wfd.c index 0683dba30b4b..47343001c9b9 100644 --- a/sys/pc98/pc98/wfd.c +++ b/sys/pc98/pc98/wfd.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: wfd.c,v 1.6 1998/02/01 21:57:49 bde Exp $ + * $Id: wfd.c,v 1.7 1998/02/09 06:08:44 eivind Exp $ */ /* @@ -58,7 +58,7 @@ static d_ioctl_t wfdioctl; static d_strategy_t wfdstrategy; #define CDEV_MAJOR 87 -#define BDEV_MAJOR 24 +#define BDEV_MAJOR 1 static struct cdevsw wfd_cdevsw; static struct bdevsw wfd_bdevsw = { wfdbopen, wfdbclose, wfdstrategy, wfdioctl, |
