diff options
author | Devendra.Naga <devendra.aaru@gmail.com> | 2012-01-31 01:28:15 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-02-06 14:53:07 -0500 |
commit | 1d73c51a8476847d96a6c5a2ae3715d7099c58c9 (patch) | |
tree | 55cf36f9cda16c92ead092b756c0f68f3e81dafe | |
parent | d6865dcc58f252480515101fd13532f0fc420b53 (diff) |
rtlwifi: remove return in _rtl_pci_switch_clk_req
the return value from _rtl_pci_switch_clk_req is not used by any of its callers.
Signed-off-by: Devendra.Naga <devendra.aaru@gmail.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/rtlwifi/pci.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/wireless/rtlwifi/pci.c b/drivers/net/wireless/rtlwifi/pci.c index 5cb2199435d2..9a0190944de5 100644 --- a/drivers/net/wireless/rtlwifi/pci.c +++ b/drivers/net/wireless/rtlwifi/pci.c | |||
@@ -198,7 +198,7 @@ static bool _rtl_pci_platform_switch_device_pci_aspm( | |||
198 | } | 198 | } |
199 | 199 | ||
200 | /*When we set 0x01 to enable clk request. Set 0x0 to disable clk req.*/ | 200 | /*When we set 0x01 to enable clk request. Set 0x0 to disable clk req.*/ |
201 | static bool _rtl_pci_switch_clk_req(struct ieee80211_hw *hw, u8 value) | 201 | static void _rtl_pci_switch_clk_req(struct ieee80211_hw *hw, u8 value) |
202 | { | 202 | { |
203 | struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); | 203 | struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); |
204 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 204 | struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); |
@@ -207,8 +207,6 @@ static bool _rtl_pci_switch_clk_req(struct ieee80211_hw *hw, u8 value) | |||
207 | 207 | ||
208 | if (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE) | 208 | if (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE) |
209 | udelay(100); | 209 | udelay(100); |
210 | |||
211 | return true; | ||
212 | } | 210 | } |
213 | 211 | ||
214 | /*Disable RTL8192SE ASPM & Disable Pci Bridge ASPM*/ | 212 | /*Disable RTL8192SE ASPM & Disable Pci Bridge ASPM*/ |