提交 43a1c272 编写于 作者: V Vincent Zweije 提交者: John W. Linville

networking: fix warning about unused label wake_up

Function ieee80211_reconfig in net/mac80211/util.c contains label wake_up
which is defined unconditionally, but only used with CONFIG_PM. Gcc
warns about this when CONFIG_PM is not defined.

This patch makes the label's definition dependent on CONFIG_PM too,
eliminating the warning.

The issue was apparently introduced in git commit
eecc4800.
Signed-off-by: NVincent Zweije <vincent@zweije.nl>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 323222b5
...@@ -1276,7 +1276,9 @@ int ieee80211_reconfig(struct ieee80211_local *local) ...@@ -1276,7 +1276,9 @@ int ieee80211_reconfig(struct ieee80211_local *local)
if (ieee80211_sdata_running(sdata)) if (ieee80211_sdata_running(sdata))
ieee80211_enable_keys(sdata); ieee80211_enable_keys(sdata);
#ifdef CONFIG_PM
wake_up: wake_up:
#endif
ieee80211_wake_queues_by_reason(hw, ieee80211_wake_queues_by_reason(hw,
IEEE80211_QUEUE_STOP_REASON_SUSPEND); IEEE80211_QUEUE_STOP_REASON_SUSPEND);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册