From d9efa52e175ab58460bf8c3eb3c3a2ac90b1b1cd Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Wed, 19 Oct 2005 00:18:11 +0000 Subject: [PATCH] Make sure we set bst and bsh in the softc. This gets us probing, but not attaching to, ISA cards. More work needed since the ISA attach routine is return ENXIO right now :-) --- sys/dev/pccbb/pccbb_isa.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/pccbb/pccbb_isa.c b/sys/dev/pccbb/pccbb_isa.c index b008574d755f..cfd114848a88 100644 --- a/sys/dev/pccbb/pccbb_isa.c +++ b/sys/dev/pccbb/pccbb_isa.c @@ -156,6 +156,8 @@ cbb_isa_activate(device_t dev) device_printf(dev, "Cannot allocate I/O\n"); return (ENOMEM); } + sc->bst = rman_get_bustag(res); + sc->bsh = rman_get_bushandle(res); sc->base_res = res; return (0); }