Browse Source

[PATCH] softmac: Fix compiler-warning

  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: efe870f9f4ad74410a18ecbf0d9ba7c14b50a0fb. Removing the label.

Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Richard Knutsson 17 years ago
parent
commit
ee0a8169b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      net/ieee80211/softmac/ieee80211softmac_wx.c

+ 1 - 1
net/ieee80211/softmac/ieee80211softmac_wx.c

@@ -114,7 +114,7 @@ check_assoc_again:
 	sm->associnfo.associating = 1;
 	sm->associnfo.associating = 1;
 	/* queue lower level code to do work (if necessary) */
 	/* queue lower level code to do work (if necessary) */
 	schedule_delayed_work(&sm->associnfo.work, 0);
 	schedule_delayed_work(&sm->associnfo.work, 0);
-out:
+
 	mutex_unlock(&sm->associnfo.mutex);
 	mutex_unlock(&sm->associnfo.mutex);
 
 
 	return 0;
 	return 0;