diff options
Diffstat (limited to 'sys/dev/mlx')
-rw-r--r-- | sys/dev/mlx/mlx.c | 1 | ||||
-rw-r--r-- | sys/dev/mlx/mlx_disk.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/sys/dev/mlx/mlx.c b/sys/dev/mlx/mlx.c index 291618a..fe2dc31 100644 --- a/sys/dev/mlx/mlx.c +++ b/sys/dev/mlx/mlx.c @@ -69,7 +69,6 @@ static struct cdevsw mlx_cdevsw = { /* dump */ nodump, /* psize */ nopsize, /* flags */ 0, - /* bmaj */ -1 }; devclass_t mlx_devclass; diff --git a/sys/dev/mlx/mlx_disk.c b/sys/dev/mlx/mlx_disk.c index 3f19514..365ac45 100644 --- a/sys/dev/mlx/mlx_disk.c +++ b/sys/dev/mlx/mlx_disk.c @@ -58,7 +58,6 @@ static d_close_t mlxd_close; static d_strategy_t mlxd_strategy; static d_ioctl_t mlxd_ioctl; -#define MLXD_BDEV_MAJOR 27 #define MLXD_CDEV_MAJOR 131 static struct cdevsw mlxd_cdevsw = { @@ -75,7 +74,6 @@ static struct cdevsw mlxd_cdevsw = { /* dump */ nodump, /* psize */ nopsize, /* flags */ D_DISK, - /* bmaj */ MLXD_BDEV_MAJOR }; devclass_t mlxd_devclass; |