ath5k: print more errors when decriptor setup fails
authorBruno Randolf <br1@einfach.org>
Wed, 16 Jun 2010 10:11:35 +0000 (19:11 +0900)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 16 Jun 2010 18:59:00 +0000 (14:59 -0400)
Signed-off-by: Bruno Randolf <br1@einfach.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath5k/base.c

index 5bd9a39..6c303d5 100644 (file)
@@ -1243,8 +1243,10 @@ ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
        ds->ds_link = bf->daddr;        /* link to self */
        ds->ds_data = bf->skbaddr;
        ret = ah->ah_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0);
-       if (ret)
+       if (ret) {
+               ATH5K_ERR(sc, "%s: could not setup RX desc\n", __func__);
                return ret;
+       }
 
        if (sc->rxlink != NULL)
                *sc->rxlink = bf->daddr;