Commit 230f7af0 authored by Joerg Albert's avatar Joerg Albert Committed by John W. Linville

mwl8k: fix module re-insertion bug

swap mwl8k_remove and mwl8k_shutdown functions to allow
"rmmod mwl8k; modprobe mwl8k"
Signed-off-by: default avatarJoerg Albert <jal2@gmx.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c3b93c87
...@@ -3720,12 +3720,12 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev, ...@@ -3720,12 +3720,12 @@ static int __devinit mwl8k_probe(struct pci_dev *pdev,
return rc; return rc;
} }
static void __devexit mwl8k_remove(struct pci_dev *pdev) static void __devexit mwl8k_shutdown(struct pci_dev *pdev)
{ {
printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__); printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__);
} }
static void __devexit mwl8k_shutdown(struct pci_dev *pdev) static void __devexit mwl8k_remove(struct pci_dev *pdev)
{ {
struct ieee80211_hw *hw = pci_get_drvdata(pdev); struct ieee80211_hw *hw = pci_get_drvdata(pdev);
struct mwl8k_priv *priv; struct mwl8k_priv *priv;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment