diff options
Diffstat (limited to 'sys/scsi/cd.c')
-rw-r--r-- | sys/scsi/cd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c index 3a6fed2..8c79c59 100644 --- a/sys/scsi/cd.c +++ b/sys/scsi/cd.c @@ -75,7 +75,7 @@ static d_strategy_t cdstrategy; static struct cdevsw cd_cdevsw; static struct bdevsw cd_bdevsw = { cdopen, cdclose, cdstrategy, cdioctl, /*6*/ - nodump, nopsize, 0, "cd", &cd_cdevsw, -1 }; + nodump, nopsize, D_DISK, "cd", &cd_cdevsw, -1 }; static int32_t cdstrats, cdqueues; |