Lines Matching defs:error
1833 int error = 0;
1848 error = -EIO;
1853 return error;
2210 * and map buffer for DMA. Frees skb on error
2610 * If an underrun error is seen assume it as an excessive
2838 int error = 0;
2842 error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
2844 if (error != 0) {
2846 "Failed to allocate tx descriptors: %d\n", error);
2847 return error;
2850 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
2852 if (error != 0) {
2854 "Failed to allocate beacon descriptors: %d\n", error);
2855 return error;
2859 error = ath_tx_edma_init(sc);
2861 return error;