示例#1
0
static int
mptable_hostb_adjust_resource(device_t dev, device_t child, int type,
    struct resource *r, u_long start, u_long end)
{
	struct mptable_hostb_softc *sc;

	sc = device_get_softc(dev);
	return (pcib_host_res_adjust(&sc->sc_host_res, child, type, r, start,
	    end));
}
示例#2
0
static int
mptable_hostb_adjust_resource(device_t dev, device_t child, int type,
    struct resource *r, rman_res_t start, rman_res_t end)
{
	struct mptable_hostb_softc *sc;

#ifdef PCI_RES_BUS
	if (type == PCI_RES_BUS)
		return (pci_domain_adjust_bus(0, child, r, start, end));
#endif
	sc = device_get_softc(dev);
	return (pcib_host_res_adjust(&sc->sc_host_res, child, type, r, start,
	    end));
}