1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Remove unused variable cn_devfsdev.

This commit is contained in:
Poul-Henning Kamp 2002-12-17 19:30:50 +00:00
parent 11aee0b4b0
commit 126c7e29fe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=107984

View File

@ -115,7 +115,6 @@ int cons_unavail = 0; /* XXX:
static int cn_mute;
static int openflag; /* how /dev/console was opened */
static int cn_is_open;
static dev_t cn_devfsdev; /* represents the device private info */
static u_char console_pausing; /* pause after each line during probe */
static char *console_pausestr=
"<pause; press any key to proceed to next line or '.' to end pause mode>";
@ -592,7 +591,7 @@ static void
cn_drvinit(void *unused)
{
cn_devfsdev = make_dev(&cn_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600,
make_dev(&cn_cdevsw, 0, UID_ROOT, GID_WHEEL, 0600,
"console");
}