summaryrefslogtreecommitdiffstats
path: root/sys/dev/si/si.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1996-09-06 23:09:20 +0000
committerphk <phk@FreeBSD.org>1996-09-06 23:09:20 +0000
commitbca885205da7f15208946f0896edc2eda3caff01 (patch)
tree35dad08bf59366e84921fd4aad9718c2f9426a1b /sys/dev/si/si.c
parent9640e2d9e8f825813ec445d294de60884ad82bc8 (diff)
downloadFreeBSD-src-bca885205da7f15208946f0896edc2eda3caff01.zip
FreeBSD-src-bca885205da7f15208946f0896edc2eda3caff01.tar.gz
Remove devconf, it never grew up to be of any use.
Diffstat (limited to 'sys/dev/si/si.c')
-rw-r--r--sys/dev/si/si.c35
1 files changed, 1 insertions, 34 deletions
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c
index bcb301d..369d57d 100644
--- a/sys/dev/si/si.c
+++ b/sys/dev/si/si.c
@@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
- * $Id: si.c,v 1.50 1996/08/03 00:21:44 peter Exp $
+ * $Id: si.c,v 1.51 1996/08/12 17:12:07 peter Exp $
*/
#ifndef lint
@@ -53,7 +53,6 @@ static const char si_copyright1[] = "@(#) (C) Specialix International, 1990,199
#include <sys/syslog.h>
#include <sys/malloc.h>
#include <sys/sysctl.h>
-#include <sys/devconf.h>
#ifdef DEVFS
#include <sys/devfsext.h>
#endif /*DEVFS*/
@@ -105,7 +104,6 @@ static void sidtrwakeup __P((void *chan));
static int siparam __P((struct tty *, struct termios *));
-static void si_registerdev __P((struct isa_device *id));
static int siprobe __P((struct isa_device *id));
static int siattach __P((struct isa_device *id));
static void si_modem_state __P((struct si_port *pp, struct tty *tp, int hi_ip));
@@ -163,7 +161,6 @@ struct si_softc {
int sc_irq; /* copy of attach irq */
int sc_eisa_iobase; /* EISA io port address */
int sc_eisa_irqbits;
- struct kern_devconf sc_kdc;
#ifdef DEVFS
struct {
void *ttyd;
@@ -253,31 +250,6 @@ static char *si_type[] = {
"SIEISA",
};
-
-static struct kern_devconf si_kdc[NSI] = { {
- 0, 0, 0, /* filled in by dev_attach */
- "si", 0, { MDDT_ISA, 0, "tty" },
- isa_generic_externalize, 0, 0, ISA_EXTERNALLEN,
- &kdc_isa0, /* parent */
- 0, /* parent data */
- DC_UNCONFIGURED, /* state */
- "Specialix SI/XIO Host adapter",
- DC_CLS_SERIAL, /* class */
-} };
-
-static void
-si_registerdev(id)
- struct isa_device *id;
-{
- if (id->id_unit != 0) {
- bcopy(&si_kdc[0], &si_kdc[id->id_unit], sizeof(si_kdc[0]));
- }
- si_kdc[id->id_unit].kdc_unit = id->id_unit;
- si_kdc[id->id_unit].kdc_isa = id;
- si_kdc[id->id_unit].kdc_state = DC_UNCONFIGURED;
- dev_attach(&si_kdc[id->id_unit]);
-}
-
/* Look for a valid board at the given mem addr */
static int
siprobe(id)
@@ -290,8 +262,6 @@ siprobe(id)
volatile unsigned char *maddr;
unsigned char *paddr;
- si_registerdev(id);
-
si_pollrate = POLLHZ; /* default 10 per second */
#ifdef REALPOLL
si_realpoll = 1; /* scan always */
@@ -645,9 +615,6 @@ mem_fail:
bzero(tp, sizeof(*tp) * nport);
si_tty = tp;
- /* mark the device state as attached */
- si_kdc[unit].kdc_state = DC_BUSY;
-
/*
* Scan round the ports again, this time initialising.
*/
OpenPOWER on IntegriCloud