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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151457

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