mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 00:24:12 +08:00
ath9k: Remove unused argument "size"
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Acked-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
79acac0708
commit
7a8972037d
@ -130,7 +130,7 @@ static bool ath_rx_edma_buf_link(struct ath_softc *sc,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void ath_rx_addbuffer_edma(struct ath_softc *sc,
|
static void ath_rx_addbuffer_edma(struct ath_softc *sc,
|
||||||
enum ath9k_rx_qtype qtype, int size)
|
enum ath9k_rx_qtype qtype)
|
||||||
{
|
{
|
||||||
struct ath_common *common = ath9k_hw_common(sc->sc_ah);
|
struct ath_common *common = ath9k_hw_common(sc->sc_ah);
|
||||||
struct ath_buf *bf, *tbf;
|
struct ath_buf *bf, *tbf;
|
||||||
@ -250,15 +250,9 @@ rx_init_fail:
|
|||||||
static void ath_edma_start_recv(struct ath_softc *sc)
|
static void ath_edma_start_recv(struct ath_softc *sc)
|
||||||
{
|
{
|
||||||
ath9k_hw_rxena(sc->sc_ah);
|
ath9k_hw_rxena(sc->sc_ah);
|
||||||
|
ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_HP);
|
||||||
ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_HP,
|
ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_LP);
|
||||||
sc->rx.rx_edma[ATH9K_RX_QUEUE_HP].rx_fifo_hwsize);
|
|
||||||
|
|
||||||
ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_LP,
|
|
||||||
sc->rx.rx_edma[ATH9K_RX_QUEUE_LP].rx_fifo_hwsize);
|
|
||||||
|
|
||||||
ath_opmode_init(sc);
|
ath_opmode_init(sc);
|
||||||
|
|
||||||
ath9k_hw_startpcureceive(sc->sc_ah, !!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL));
|
ath9k_hw_startpcureceive(sc->sc_ah, !!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user