Correct type of intializer for (undocumented) cdevsw.d_parms.

Submitted-by:	peter
This commit is contained in:
Greg Lehey 1999-06-29 04:07:55 +00:00
parent 9d1163f7c3
commit 7d0e3c6f72
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48329

View File

@ -54,7 +54,7 @@ STATIC struct cdevsw vinum_cdevsw =
vinumopen, vinumclose, physread, physwrite, vinumopen, vinumclose, physread, physwrite,
vinumioctl, nostop, noreset, nodevtotty, vinumioctl, nostop, noreset, nodevtotty,
seltrue, nommap, vinumstrategy, "vinum", seltrue, nommap, vinumstrategy, "vinum",
NULL, CDEV_MAJOR, vinumdump, vinumsize, noparms, CDEV_MAJOR, vinumdump, vinumsize,
D_DISK, 0, BDEV_MAJOR D_DISK, 0, BDEV_MAJOR
}; };
@ -236,6 +236,7 @@ vinum_modevent(module_t mod, modeventtype_t type, void *unused)
} }
} }
#endif #endif
cdevsw_remove(&vinum_cdevsw);
log(LOG_INFO, "vinum: unloaded\n"); /* tell the world */ log(LOG_INFO, "vinum: unloaded\n"); /* tell the world */
return 0; return 0;
default: default: