linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cfg80211: Remove compile warnings
@ 2012-04-25 12:45 Andrei Emeltchenko
  2012-05-03 19:00 ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: Andrei Emeltchenko @ 2012-04-25 12:45 UTC (permalink / raw)
  To: linux-wireless

From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>

Use default key to handle similar iface types. This removes compile warnings:

net/wireless/util.c: In function ‘cfg80211_change_iface’:
net/wireless/util.c:846:3: warning: enumeration value ‘NL80211_IFTYPE_MAX’
	not handled in switch [-Wswitch]

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
---
 net/wireless/util.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net/wireless/util.c b/net/wireless/util.c
index 1b7a08d..468dc8b 100644
--- a/net/wireless/util.c
+++ b/net/wireless/util.c
@@ -862,8 +862,7 @@ int cfg80211_change_iface(struct cfg80211_registered_device *rdev,
 		case NL80211_IFTYPE_MONITOR:
 			/* monitor can't bridge anyway */
 			break;
-		case NL80211_IFTYPE_UNSPECIFIED:
-		case NUM_NL80211_IFTYPES:
+		default:
 			/* not happening */
 			break;
 		}
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-05-09  2:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-25 12:45 [PATCH] cfg80211: Remove compile warnings Andrei Emeltchenko
2012-05-03 19:00 ` Johannes Berg
2012-05-04  8:44   ` Andrei Emeltchenko
2012-05-07  9:30     ` Johannes Berg
2012-05-09  1:48       ` John W. Linville

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).