aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBing Zhao <bzhao@marvell.com>2013-08-10 00:09:06 -0400
committerJohn W. Linville <linville@tuxdriver.com>2013-08-12 14:36:55 -0400
commitd1e2586f484dfc36eee2b2d3a6c6c77be67ca492 (patch)
treef35286a3a360fbd62237e37d074754d0bca6e085
parent16fe28e9b4a7a5def2b20f79488546b6e2e3f2e7 (diff)
mwifiex: fix build error when CONFIG_PM is not set
config: make ARCH=m68k allmodconfig All error/warnings: drivers/net/wireless/mwifiex/cfg80211.c: In function 'mwifiex_fill_coalesce_rule_info': >> drivers/net/wireless/mwifiex/cfg80211.c:2493:3: error: implicit declaration of function 'mwifiex_is_pattern_supported' [-Werror=implicit-function-declaration] drivers/net/wireless/mwifiex/cfg80211.c: At top level: drivers/net/wireless/mwifiex/cfg80211.c:2537:12: warning: 'mwifiex_cfg80211_set_coalesce' defined but not used [-Wunused-function] cc1: some warnings being treated as errors Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/mwifiex/cfg80211.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/mwifiex/cfg80211.c b/drivers/net/wireless/mwifiex/cfg80211.c
index 07d23183898c..ca149aea1517 100644
--- a/drivers/net/wireless/mwifiex/cfg80211.c
+++ b/drivers/net/wireless/mwifiex/cfg80211.c
@@ -2307,7 +2307,6 @@ int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev)
2307} 2307}
2308EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf); 2308EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf);
2309 2309
2310#ifdef CONFIG_PM
2311static bool 2310static bool
2312mwifiex_is_pattern_supported(struct cfg80211_pkt_pattern *pat, s8 *byte_seq, 2311mwifiex_is_pattern_supported(struct cfg80211_pkt_pattern *pat, s8 *byte_seq,
2313 u8 max_byte_seq) 2312 u8 max_byte_seq)
@@ -2338,6 +2337,7 @@ mwifiex_is_pattern_supported(struct cfg80211_pkt_pattern *pat, s8 *byte_seq,
2338 return true; 2337 return true;
2339} 2338}
2340 2339
2340#ifdef CONFIG_PM
2341static int mwifiex_cfg80211_suspend(struct wiphy *wiphy, 2341static int mwifiex_cfg80211_suspend(struct wiphy *wiphy,
2342 struct cfg80211_wowlan *wowlan) 2342 struct cfg80211_wowlan *wowlan)
2343{ 2343{
@@ -2601,8 +2601,8 @@ static struct cfg80211_ops mwifiex_cfg80211_ops = {
2601 .suspend = mwifiex_cfg80211_suspend, 2601 .suspend = mwifiex_cfg80211_suspend,
2602 .resume = mwifiex_cfg80211_resume, 2602 .resume = mwifiex_cfg80211_resume,
2603 .set_wakeup = mwifiex_cfg80211_set_wakeup, 2603 .set_wakeup = mwifiex_cfg80211_set_wakeup,
2604 .set_coalesce = mwifiex_cfg80211_set_coalesce,
2605#endif 2604#endif
2605 .set_coalesce = mwifiex_cfg80211_set_coalesce,
2606}; 2606};
2607 2607
2608#ifdef CONFIG_PM 2608#ifdef CONFIG_PM