From 38391cb38a0ee28053596d31acc69685f10d3b31 Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 23 Jan 2000 11:50:43 +0000 Subject: Clean up some more loose ends.. isa_device->id_ri_flags and RI_FAST were not implemented and did nothing. The two drivers that were mistakenly thinking this was working were cy.c and loran.c - these should be converted to newbus. GC (garbage collect) isa_device->id_alive GC userconfig.c references to isa_device->id_scsiid (!). --- sys/i386/isa/loran.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'sys/i386/isa/loran.c') diff --git a/sys/i386/isa/loran.c b/sys/i386/isa/loran.c index 7964c6a..23db1a4 100644 --- a/sys/i386/isa/loran.c +++ b/sys/i386/isa/loran.c @@ -244,9 +244,6 @@ loranprobe(struct isa_device *dvp) if (!once++) cdevsw_add(&loran_cdevsw); - /* We need to be a "fast-intr" */ - dvp->id_ri_flags |= RI_FAST; - dvp->id_iobase = PORT; return (8); } @@ -284,7 +281,7 @@ loranattach(struct isa_device *isdp) isdp->id_ointr = loranintr; /* We need to be a "fast-intr" */ - isdp->id_ri_flags |= RI_FAST; + /* isdp->id_ri_flags |= RI_FAST; XXX unimplemented - use newbus! */ printf("loran0: LORAN-C Receiver\n"); -- cgit v1.1