Skip to content

Commit

Permalink
[PATCH] softmac: Fix compiler-warning
Browse files Browse the repository at this point in the history
  CC      net/ieee80211/softmac/ieee80211softmac_wx.o
/home/kernel/src/net/ieee80211/softmac/ieee80211softmac_wx.c: In function �ieee80211softmac_wx_set_essid�:
/home/kernel/src/net/ieee80211/softmac/ieee80211softmac_wx.c:117: warning: label �out� defined but not used

due to commit: efe870f. Removing the label.

Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Richard Knutsson authored and John W. Linville committed Oct 2, 2007
1 parent 4365e99 commit ee0a816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ieee80211/softmac/ieee80211softmac_wx.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ ieee80211softmac_wx_set_essid(struct net_device *net_dev,
sm->associnfo.associating = 1;
/* queue lower level code to do work (if necessary) */
schedule_delayed_work(&sm->associnfo.work, 0);
out:

mutex_unlock(&sm->associnfo.mutex);

return 0;
Expand Down

0 comments on commit ee0a816

Please sign in to comment.