One missed file in the previous commit:

> Split softc and device_t for zsc(4) and its children.

Pointed out by mrg@.
This commit is contained in:
tsutsui 2008-03-30 01:41:36 +00:00
parent e637592b65
commit 8a19236fe5
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kd.c,v 1.47 2007/11/19 18:51:43 ad Exp $ */
/* $NetBSD: kd.c,v 1.48 2008/03/30 01:41:36 tsutsui Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -46,7 +46,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kd.c,v 1.47 2007/11/19 18:51:43 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: kd.c,v 1.48 2008/03/30 01:41:36 tsutsui Exp $");
#include <sys/param.h>
#include <sys/proc.h>
@ -461,7 +461,7 @@ void
cons_attach_input(struct cons_channel *cc, struct consdev *cn)
{
struct kd_softc *kd = &kd_softc;
struct kbd_softc *kds = cc->cc_dev;
struct kbd_softc *kds = cc->cc_private;
struct kbd_state *ks;
/* Share the keyboard state */
@ -484,7 +484,7 @@ cons_attach_input(struct cons_channel *cc, struct consdev *cn)
cn_tab->cn_pri = CN_INTERNAL;
/* Set up initial PROM input channel for /dev/console */
prom_cons_channel.cc_dev = NULL;
prom_cons_channel.cc_private = NULL;
prom_cons_channel.cc_iopen = kd_rom_iopen;
prom_cons_channel.cc_iclose = kd_rom_iclose;
@ -524,7 +524,7 @@ kdcninit(struct consdev *cn)
kbd_xlate_init(ks);
/* Set up initial PROM input channel for /dev/console */
prom_cons_channel.cc_dev = NULL;
prom_cons_channel.cc_private = NULL;
prom_cons_channel.cc_iopen = kd_rom_iopen;
prom_cons_channel.cc_iclose = kd_rom_iclose;
cons_attach_input(&prom_cons_channel);