diff options
| author | Takashi Iwai <tiwai@suse.de> | 2010-09-03 16:38:52 -0400 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2010-09-03 16:38:52 -0400 |
| commit | 68885a3ff38ed51fa02f241feb405c9922a90ee0 (patch) | |
| tree | 2fc626df39d5e0e1f6b065238141f7d49187c737 /drivers/net/wireless/mwl8k.c | |
| parent | 7b28079b3284ccb15ad4f003fb7073890600d0c1 (diff) | |
| parent | a2acad8298a42b7be684a32fafaf83332bba9c2b (diff) | |
Merge branch 'fix/misc' into topic/misc
Diffstat (limited to 'drivers/net/wireless/mwl8k.c')
| -rw-r--r-- | drivers/net/wireless/mwl8k.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c index d761ed2d8af4..f152a25be59f 100644 --- a/drivers/net/wireless/mwl8k.c +++ b/drivers/net/wireless/mwl8k.c | |||
| @@ -910,14 +910,14 @@ static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index) | |||
| 910 | 910 | ||
| 911 | rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma); | 911 | rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma); |
| 912 | if (rxq->rxd == NULL) { | 912 | if (rxq->rxd == NULL) { |
| 913 | wiphy_err(hw->wiphy, "failed to alloc rx descriptors\n"); | 913 | wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n"); |
| 914 | return -ENOMEM; | 914 | return -ENOMEM; |
| 915 | } | 915 | } |
| 916 | memset(rxq->rxd, 0, size); | 916 | memset(rxq->rxd, 0, size); |
| 917 | 917 | ||
| 918 | rxq->buf = kmalloc(MWL8K_RX_DESCS * sizeof(*rxq->buf), GFP_KERNEL); | 918 | rxq->buf = kmalloc(MWL8K_RX_DESCS * sizeof(*rxq->buf), GFP_KERNEL); |
| 919 | if (rxq->buf == NULL) { | 919 | if (rxq->buf == NULL) { |
| 920 | wiphy_err(hw->wiphy, "failed to alloc rx skbuff list\n"); | 920 | wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n"); |
| 921 | pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma); | 921 | pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma); |
| 922 | return -ENOMEM; | 922 | return -ENOMEM; |
| 923 | } | 923 | } |
| @@ -1145,14 +1145,14 @@ static int mwl8k_txq_init(struct ieee80211_hw *hw, int index) | |||
| 1145 | 1145 | ||
| 1146 | txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma); | 1146 | txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma); |
| 1147 | if (txq->txd == NULL) { | 1147 | if (txq->txd == NULL) { |
| 1148 | wiphy_err(hw->wiphy, "failed to alloc tx descriptors\n"); | 1148 | wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n"); |
| 1149 | return -ENOMEM; | 1149 | return -ENOMEM; |
| 1150 | } | 1150 | } |
| 1151 | memset(txq->txd, 0, size); | 1151 | memset(txq->txd, 0, size); |
| 1152 | 1152 | ||
| 1153 | txq->skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->skb), GFP_KERNEL); | 1153 | txq->skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->skb), GFP_KERNEL); |
| 1154 | if (txq->skb == NULL) { | 1154 | if (txq->skb == NULL) { |
| 1155 | wiphy_err(hw->wiphy, "failed to alloc tx skbuff list\n"); | 1155 | wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n"); |
| 1156 | pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma); | 1156 | pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma); |
| 1157 | return -ENOMEM; | 1157 | return -ENOMEM; |
| 1158 | } | 1158 | } |
| @@ -1573,7 +1573,7 @@ static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd) | |||
| 1573 | PCI_DMA_BIDIRECTIONAL); | 1573 | PCI_DMA_BIDIRECTIONAL); |
| 1574 | 1574 | ||
| 1575 | if (!timeout) { | 1575 | if (!timeout) { |
| 1576 | wiphy_err(hw->wiphy, "command %s timeout after %u ms\n", | 1576 | wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n", |
| 1577 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), | 1577 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), |
| 1578 | MWL8K_CMD_TIMEOUT_MS); | 1578 | MWL8K_CMD_TIMEOUT_MS); |
| 1579 | rc = -ETIMEDOUT; | 1579 | rc = -ETIMEDOUT; |
| @@ -1584,11 +1584,11 @@ static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd) | |||
| 1584 | 1584 | ||
| 1585 | rc = cmd->result ? -EINVAL : 0; | 1585 | rc = cmd->result ? -EINVAL : 0; |
| 1586 | if (rc) | 1586 | if (rc) |
| 1587 | wiphy_err(hw->wiphy, "command %s error 0x%x\n", | 1587 | wiphy_err(hw->wiphy, "Command %s error 0x%x\n", |
| 1588 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), | 1588 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), |
| 1589 | le16_to_cpu(cmd->result)); | 1589 | le16_to_cpu(cmd->result)); |
| 1590 | else if (ms > 2000) | 1590 | else if (ms > 2000) |
| 1591 | wiphy_notice(hw->wiphy, "command %s took %d ms\n", | 1591 | wiphy_notice(hw->wiphy, "Command %s took %d ms\n", |
| 1592 | mwl8k_cmd_name(cmd->code, | 1592 | mwl8k_cmd_name(cmd->code, |
| 1593 | buf, sizeof(buf)), | 1593 | buf, sizeof(buf)), |
| 1594 | ms); | 1594 | ms); |
| @@ -3210,7 +3210,7 @@ static int mwl8k_start(struct ieee80211_hw *hw) | |||
| 3210 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, | 3210 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, |
| 3211 | IRQF_SHARED, MWL8K_NAME, hw); | 3211 | IRQF_SHARED, MWL8K_NAME, hw); |
| 3212 | if (rc) { | 3212 | if (rc) { |
| 3213 | wiphy_err(hw->wiphy, "failed to register irq handler\n"); | 3213 | wiphy_err(hw->wiphy, "failed to register IRQ handler\n"); |
| 3214 | return -EIO; | 3214 | return -EIO; |
| 3215 | } | 3215 | } |
| 3216 | 3216 | ||
| @@ -3926,7 +3926,7 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, | |||
| 3926 | 3926 | ||
| 3927 | priv->sram = pci_iomap(pdev, 0, 0x10000); | 3927 | priv->sram = pci_iomap(pdev, 0, 0x10000); |
| 3928 | if (priv->sram == NULL) { | 3928 | if (priv->sram == NULL) { |
| 3929 | wiphy_err(hw->wiphy, "cannot map device sram\n"); | 3929 | wiphy_err(hw->wiphy, "Cannot map device SRAM\n"); |
| 3930 | goto err_iounmap; | 3930 | goto err_iounmap; |
| 3931 | } | 3931 | } |
| 3932 | 3932 | ||
| @@ -3938,7 +3938,7 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, | |||
| 3938 | if (priv->regs == NULL) { | 3938 | if (priv->regs == NULL) { |
| 3939 | priv->regs = pci_iomap(pdev, 2, 0x10000); | 3939 | priv->regs = pci_iomap(pdev, 2, 0x10000); |
| 3940 | if (priv->regs == NULL) { | 3940 | if (priv->regs == NULL) { |
| 3941 | wiphy_err(hw->wiphy, "cannot map device registers\n"); | 3941 | wiphy_err(hw->wiphy, "Cannot map device registers\n"); |
| 3942 | goto err_iounmap; | 3942 | goto err_iounmap; |
| 3943 | } | 3943 | } |
| 3944 | } | 3944 | } |
| @@ -3950,14 +3950,14 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, | |||
| 3950 | /* Ask userland hotplug daemon for the device firmware */ | 3950 | /* Ask userland hotplug daemon for the device firmware */ |
| 3951 | rc = mwl8k_request_firmware(priv); | 3951 | rc = mwl8k_request_firmware(priv); |
| 3952 | if (rc) { | 3952 | if (rc) { |
| 3953 | wiphy_err(hw->wiphy, "firmware files not found\n"); | 3953 | wiphy_err(hw->wiphy, "Firmware files not found\n"); |
| 3954 | goto err_stop_firmware; | 3954 | goto err_stop_firmware; |
| 3955 | } | 3955 | } |
| 3956 | 3956 | ||
| 3957 | /* Load firmware into hardware */ | 3957 | /* Load firmware into hardware */ |
| 3958 | rc = mwl8k_load_firmware(hw); | 3958 | rc = mwl8k_load_firmware(hw); |
| 3959 | if (rc) { | 3959 | if (rc) { |
| 3960 | wiphy_err(hw->wiphy, "cannot start firmware\n"); | 3960 | wiphy_err(hw->wiphy, "Cannot start firmware\n"); |
| 3961 | goto err_stop_firmware; | 3961 | goto err_stop_firmware; |
| 3962 | } | 3962 | } |
| 3963 | 3963 | ||
| @@ -4047,7 +4047,7 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, | |||
| 4047 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, | 4047 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, |
| 4048 | IRQF_SHARED, MWL8K_NAME, hw); | 4048 | IRQF_SHARED, MWL8K_NAME, hw); |
| 4049 | if (rc) { | 4049 | if (rc) { |
| 4050 | wiphy_err(hw->wiphy, "failed to register irq handler\n"); | 4050 | wiphy_err(hw->wiphy, "failed to register IRQ handler\n"); |
| 4051 | goto err_free_queues; | 4051 | goto err_free_queues; |
| 4052 | } | 4052 | } |
| 4053 | 4053 | ||
| @@ -4067,7 +4067,7 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, | |||
| 4067 | rc = mwl8k_cmd_get_hw_spec_sta(hw); | 4067 | rc = mwl8k_cmd_get_hw_spec_sta(hw); |
| 4068 | } | 4068 | } |
| 4069 | if (rc) { | 4069 | if (rc) { |
| 4070 | wiphy_err(hw->wiphy, "cannot initialise firmware\n"); | 4070 | wiphy_err(hw->wiphy, "Cannot initialise firmware\n"); |
| 4071 | goto err_free_irq; | 4071 | goto err_free_irq; |
| 4072 | } | 4072 | } |
| 4073 | 4073 | ||
| @@ -4081,14 +4081,14 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, | |||
| 4081 | /* Turn radio off */ | 4081 | /* Turn radio off */ |
| 4082 | rc = mwl8k_cmd_radio_disable(hw); | 4082 | rc = mwl8k_cmd_radio_disable(hw); |
| 4083 | if (rc) { | 4083 | if (rc) { |
| 4084 | wiphy_err(hw->wiphy, "cannot disable\n"); | 4084 | wiphy_err(hw->wiphy, "Cannot disable\n"); |
| 4085 | goto err_free_irq; | 4085 | goto err_free_irq; |
| 4086 | } | 4086 | } |
| 4087 | 4087 | ||
| 4088 | /* Clear MAC address */ | 4088 | /* Clear MAC address */ |
| 4089 | rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00"); | 4089 | rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00"); |
| 4090 | if (rc) { | 4090 | if (rc) { |
| 4091 | wiphy_err(hw->wiphy, "cannot clear mac address\n"); | 4091 | wiphy_err(hw->wiphy, "Cannot clear MAC address\n"); |
| 4092 | goto err_free_irq; | 4092 | goto err_free_irq; |
| 4093 | } | 4093 | } |
| 4094 | 4094 | ||
| @@ -4098,7 +4098,7 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, | |||
| 4098 | 4098 | ||
| 4099 | rc = ieee80211_register_hw(hw); | 4099 | rc = ieee80211_register_hw(hw); |
| 4100 | if (rc) { | 4100 | if (rc) { |
| 4101 | wiphy_err(hw->wiphy, "cannot register device\n"); | 4101 | wiphy_err(hw->wiphy, "Cannot register device\n"); |
| 4102 | goto err_free_queues; | 4102 | goto err_free_queues; |
| 4103 | } | 4103 | } |
| 4104 | 4104 | ||
