Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mwl8k: remove useless pci shutdown callback and stray debugging

This patch removes a left over debugging print present in the pci
shutdown callback, since this callback does not do anything useful, get
rid of it entirely.

Signed-off-by: Florian Fainelli <ffainelli@freebox.fr>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by

Florian Fainelli and committed by
John W. Linville
795e9364 d6d82020

-6
-6
drivers/net/wireless/mwl8k.c
··· 5873 5873 return rc; 5874 5874 } 5875 5875 5876 - static void __devexit mwl8k_shutdown(struct pci_dev *pdev) 5877 - { 5878 - printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__); 5879 - } 5880 - 5881 5876 static void __devexit mwl8k_remove(struct pci_dev *pdev) 5882 5877 { 5883 5878 struct ieee80211_hw *hw = pci_get_drvdata(pdev); ··· 5926 5931 .id_table = mwl8k_pci_id_table, 5927 5932 .probe = mwl8k_probe, 5928 5933 .remove = __devexit_p(mwl8k_remove), 5929 - .shutdown = __devexit_p(mwl8k_shutdown), 5930 5934 }; 5931 5935 5932 5936 module_pci_driver(mwl8k_driver);