Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 183547
b: refs/heads/master
c: 9194223
h: refs/heads/master
i:
  183545: a077404
  183543: 04b2296
v: v3
  • Loading branch information
Lennert Buytenhek authored and John W. Linville committed Jan 5, 2010
1 parent 274e08c commit 07e96dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4113f75187bfebccc54bf13c0ed09593023b53ca
refs/heads/master: 91942230689c1758685499e82e53769d5e7f32eb
11 changes: 9 additions & 2 deletions trunk/drivers/net/wireless/mwl8k.c
Original file line number Diff line number Diff line change
Expand Up @@ -3361,10 +3361,17 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev,
mwl8k_release_firmware(priv);


if (priv->ap_fw)
if (priv->ap_fw) {
priv->rxd_ops = priv->device_info->ap_rxd_ops;
else
if (priv->rxd_ops == NULL) {
printk(KERN_ERR "%s: Driver does not have AP "
"firmware image support for this hardware\n",
wiphy_name(hw->wiphy));
goto err_stop_firmware;
}
} else {
priv->rxd_ops = &rxd_sta_ops;
}

priv->sniffer_enabled = false;
priv->wmm_enabled = false;
Expand Down

0 comments on commit 07e96dd

Please sign in to comment.