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 :-)
This commit is contained in:
Warner Losh 2005-10-19 00:18:11 +00:00
parent d45d1f2077
commit d9efa52e17

View file

@ -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);
}