diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-03-01 21:15:46 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-03-17 13:13:05 -0400 |
commit | a099874ed9db31e8ac0d8173394e54081d518635 (patch) | |
tree | 9d65c995262447b5effbad78b5d4a3871303b4b5 /drivers/net/wireless/ath/ath9k/htc_drv_init.c | |
parent | 3c4816d9a324f06c481dcc36c8dc1168f5d785c5 (diff) | |
download | blackbird-obmc-linux-a099874ed9db31e8ac0d8173394e54081d518635.tar.gz blackbird-obmc-linux-a099874ed9db31e8ac0d8173394e54081d518635.zip |
ath9k_htc: move beaconq to struct htc_beacon
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/htc_drv_init.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc_drv_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_init.c b/drivers/net/wireless/ath/ath9k/htc_drv_init.c index b8a022015f76..6eb19b8352ba 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_init.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_init.c @@ -405,8 +405,8 @@ static int ath9k_init_queues(struct ath9k_htc_priv *priv) for (i = 0; i < ARRAY_SIZE(priv->hwq_map); i++) priv->hwq_map[i] = -1; - priv->beaconq = ath9k_hw_beaconq_setup(priv->ah); - if (priv->beaconq == -1) { + priv->beacon.beaconq = ath9k_hw_beaconq_setup(priv->ah); + if (priv->beacon.beaconq == -1) { ath_err(common, "Unable to setup BEACON xmit queue\n"); goto err; } |