There is no need to get the bus tag or handle.

Sponsored by:	ABT Systems Ltd
This commit is contained in:
Andrew Turner 2015-08-27 16:27:51 +00:00
parent fd59e3a9d8
commit 2640322a2e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287214

View file

@ -117,8 +117,6 @@ struct idmac_desc {
struct dwmmc_softc {
struct resource *res[2];
bus_space_tag_t bst;
bus_space_handle_t bsh;
device_t dev;
void *intr_cookie;
struct mmc_host host;
@ -563,10 +561,6 @@ dwmmc_attach(device_t dev)
return (ENXIO);
}
/* Memory interface */
sc->bst = rman_get_bustag(sc->res[0]);
sc->bsh = rman_get_bushandle(sc->res[0]);
/* Setup interrupt handler. */
error = bus_setup_intr(dev, sc->res[1], INTR_TYPE_NET | INTR_MPSAFE,
NULL, dwmmc_intr, sc, &sc->intr_cookie);