Lines Matching defs:error
1774 int error = 0;
1789 error = -EIO;
1794 return error;
2151 * and map buffer for DMA. Frees skb on error
2551 * If an underrun error is seen assume it as an excessive
2779 int error = 0;
2783 error = ath_descdma_setup(sc, &sc->tx.txdma, &sc->tx.txbuf,
2785 if (error != 0) {
2787 "Failed to allocate tx descriptors: %d\n", error);
2788 return error;
2791 error = ath_descdma_setup(sc, &sc->beacon.bdma, &sc->beacon.bbuf,
2793 if (error != 0) {
2795 "Failed to allocate beacon descriptors: %d\n", error);
2796 return error;
2800 error = ath_tx_edma_init(sc);
2802 return error;