View | Details | Raw Unified | Return to bug 197143 | Differences between
and this patch

Collapse All | Expand All

(-)sys/dev/wpi/if_wpi.c (-2 / +1 lines)
Lines 375-382 Link Here
375
	    RF_ACTIVE);
375
	    RF_ACTIVE);
376
	if (sc->mem == NULL) {
376
	if (sc->mem == NULL) {
377
		device_printf(dev, "can't map mem space\n");
377
		device_printf(dev, "can't map mem space\n");
378
		error = ENOMEM;
378
		return ENOMEM;
379
		return error;
380
	}
379
	}
381
	sc->sc_st = rman_get_bustag(sc->mem);
380
	sc->sc_st = rman_get_bustag(sc->mem);
382
	sc->sc_sh = rman_get_bushandle(sc->mem);
381
	sc->sc_sh = rman_get_bushandle(sc->mem);

Return to bug 197143