Home
last modified time | relevance | path

Searched refs:sc_eepromdata (Results 1 – 4 of 4) sorted by relevance

/NextBSD/sys/dev/ath/
HDif_ath_ahb.c196 sc->sc_eepromdata = malloc(eepromsize, M_TEMP, M_NOWAIT | M_ZERO); in ath_ahb_attach()
197 if (sc->sc_eepromdata == NULL) { in ath_ahb_attach()
207 0, (u_int8_t *) sc->sc_eepromdata, eepromsize); in ath_ahb_attach()
210 memcpy(sc->sc_eepromdata, p, eepromsize); in ath_ahb_attach()
286 if (sc->sc_eepromdata) in ath_ahb_attach()
287 free(sc->sc_eepromdata, M_TEMP); in ath_ahb_attach()
310 if (sc->sc_eepromdata) in ath_ahb_detach()
311 free(sc->sc_eepromdata, M_TEMP); in ath_ahb_detach()
HDif_ath_pci.c343 sc->sc_eepromdata = in ath_pci_attach()
345 if (! sc->sc_eepromdata) { in ath_pci_attach()
350 memcpy(sc->sc_eepromdata, fw->data, fw->datasize); in ath_pci_attach()
403 if (sc->sc_eepromdata) in ath_pci_detach()
404 free(sc->sc_eepromdata, M_TEMP); in ath_pci_detach()
HDif_athvar.h806 uint16_t *sc_eepromdata; /* Local eeprom data, if AR9100 */ member
HDif_ath.c597 sc->sc_eepromdata, &ah_config, &status); in ath_attach()