diff options
| author | John W. Linville <linville@tuxdriver.com> | 2012-01-04 11:37:30 -0500 |
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2012-01-04 11:37:30 -0500 |
| commit | d8f46ff11081f03b09efe82245a3257bab6bf60e (patch) | |
| tree | fe47a5fe5ef62920ee3e1ffe5a2fd7a29918c6b0 | |
| parent | 405cc2736527bd506fd8f652308b03b2c8a1e8b9 (diff) | |
| parent | b015dbc0f95eef34819515bd403a62569bca23df (diff) | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless into for-davem
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 3 | ||||
| -rw-r--r-- | drivers/net/wireless/b43/pio.c | 16 | ||||
| -rw-r--r-- | drivers/net/wireless/mwifiex/sta_ioctl.c | 7 | ||||
| -rw-r--r-- | net/bluetooth/hci_core.c | 2 |
4 files changed, 23 insertions, 5 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index d2348a5a7809..a9c5ae75277e 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
| @@ -1843,6 +1843,9 @@ static void ath9k_sta_notify(struct ieee80211_hw *hw, | |||
| 1843 | struct ath_softc *sc = hw->priv; | 1843 | struct ath_softc *sc = hw->priv; |
| 1844 | struct ath_node *an = (struct ath_node *) sta->drv_priv; | 1844 | struct ath_node *an = (struct ath_node *) sta->drv_priv; |
| 1845 | 1845 | ||
| 1846 | if (!(sc->sc_flags & SC_OP_TXAGGR)) | ||
| 1847 | return; | ||
| 1848 | |||
| 1846 | switch (cmd) { | 1849 | switch (cmd) { |
| 1847 | case STA_NOTIFY_SLEEP: | 1850 | case STA_NOTIFY_SLEEP: |
| 1848 | an->sleeping = true; | 1851 | an->sleeping = true; |
diff --git a/drivers/net/wireless/b43/pio.c b/drivers/net/wireless/b43/pio.c index fcff923b3c18..279a53eae4c5 100644 --- a/drivers/net/wireless/b43/pio.c +++ b/drivers/net/wireless/b43/pio.c | |||
| @@ -617,9 +617,19 @@ static bool pio_rx_frame(struct b43_pio_rxqueue *q) | |||
| 617 | const char *err_msg = NULL; | 617 | const char *err_msg = NULL; |
| 618 | struct b43_rxhdr_fw4 *rxhdr = | 618 | struct b43_rxhdr_fw4 *rxhdr = |
| 619 | (struct b43_rxhdr_fw4 *)wl->pio_scratchspace; | 619 | (struct b43_rxhdr_fw4 *)wl->pio_scratchspace; |
| 620 | size_t rxhdr_size = sizeof(*rxhdr); | ||
| 620 | 621 | ||
| 621 | BUILD_BUG_ON(sizeof(wl->pio_scratchspace) < sizeof(*rxhdr)); | 622 | BUILD_BUG_ON(sizeof(wl->pio_scratchspace) < sizeof(*rxhdr)); |
| 622 | memset(rxhdr, 0, sizeof(*rxhdr)); | 623 | switch (dev->fw.hdr_format) { |
| 624 | case B43_FW_HDR_410: | ||
| 625 | case B43_FW_HDR_351: | ||
| 626 | rxhdr_size -= sizeof(rxhdr->format_598) - | ||
| 627 | sizeof(rxhdr->format_351); | ||
| 628 | break; | ||
| 629 | case B43_FW_HDR_598: | ||
| 630 | break; | ||
| 631 | } | ||
| 632 | memset(rxhdr, 0, rxhdr_size); | ||
| 623 | 633 | ||
| 624 | /* Check if we have data and wait for it to get ready. */ | 634 | /* Check if we have data and wait for it to get ready. */ |
| 625 | if (q->rev >= 8) { | 635 | if (q->rev >= 8) { |
| @@ -657,11 +667,11 @@ data_ready: | |||
| 657 | 667 | ||
| 658 | /* Get the preamble (RX header) */ | 668 | /* Get the preamble (RX header) */ |
| 659 | if (q->rev >= 8) { | 669 | if (q->rev >= 8) { |
| 660 | b43_block_read(dev, rxhdr, sizeof(*rxhdr), | 670 | b43_block_read(dev, rxhdr, rxhdr_size, |
| 661 | q->mmio_base + B43_PIO8_RXDATA, | 671 | q->mmio_base + B43_PIO8_RXDATA, |
| 662 | sizeof(u32)); | 672 | sizeof(u32)); |
| 663 | } else { | 673 | } else { |
| 664 | b43_block_read(dev, rxhdr, sizeof(*rxhdr), | 674 | b43_block_read(dev, rxhdr, rxhdr_size, |
| 665 | q->mmio_base + B43_PIO_RXDATA, | 675 | q->mmio_base + B43_PIO_RXDATA, |
| 666 | sizeof(u16)); | 676 | sizeof(u16)); |
| 667 | } | 677 | } |
diff --git a/drivers/net/wireless/mwifiex/sta_ioctl.c b/drivers/net/wireless/mwifiex/sta_ioctl.c index ea4a29b7e331..1679c2593b7b 100644 --- a/drivers/net/wireless/mwifiex/sta_ioctl.c +++ b/drivers/net/wireless/mwifiex/sta_ioctl.c | |||
| @@ -55,9 +55,14 @@ int mwifiex_wait_queue_complete(struct mwifiex_adapter *adapter) | |||
| 55 | { | 55 | { |
| 56 | bool cancel_flag = false; | 56 | bool cancel_flag = false; |
| 57 | int status = adapter->cmd_wait_q.status; | 57 | int status = adapter->cmd_wait_q.status; |
| 58 | struct cmd_ctrl_node *cmd_queued = adapter->cmd_queued; | 58 | struct cmd_ctrl_node *cmd_queued; |
| 59 | 59 | ||
| 60 | if (!adapter->cmd_queued) | ||
| 61 | return 0; | ||
| 62 | |||
| 63 | cmd_queued = adapter->cmd_queued; | ||
| 60 | adapter->cmd_queued = NULL; | 64 | adapter->cmd_queued = NULL; |
| 65 | |||
| 61 | dev_dbg(adapter->dev, "cmd pending\n"); | 66 | dev_dbg(adapter->dev, "cmd pending\n"); |
| 62 | atomic_inc(&adapter->cmd_pending); | 67 | atomic_inc(&adapter->cmd_pending); |
| 63 | 68 | ||
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index be84ae33ae36..b84458dcc226 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c | |||
| @@ -613,7 +613,7 @@ static int hci_dev_do_close(struct hci_dev *hdev) | |||
| 613 | if (!test_bit(HCI_RAW, &hdev->flags)) { | 613 | if (!test_bit(HCI_RAW, &hdev->flags)) { |
| 614 | set_bit(HCI_INIT, &hdev->flags); | 614 | set_bit(HCI_INIT, &hdev->flags); |
| 615 | __hci_request(hdev, hci_reset_req, 0, | 615 | __hci_request(hdev, hci_reset_req, 0, |
| 616 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); | 616 | msecs_to_jiffies(250)); |
| 617 | clear_bit(HCI_INIT, &hdev->flags); | 617 | clear_bit(HCI_INIT, &hdev->flags); |
| 618 | } | 618 | } |
| 619 | 619 | ||
