mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
d45d1f2077
commit
d9efa52e17
1 changed files with 2 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue