diff options
author | Zhao, Gang <gamerh2o@gmail.com> | 2014-04-21 00:53:00 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-04-25 11:31:00 -0400 |
commit | 308f7fcfdba47f24cd70cba978fd10fb4584e61c (patch) | |
tree | 34fcd72b534a31032033308ac8c4da1ecf5c999f | |
parent | 6b59db7d4c4b0ad039a10b63b48e4a7ff3655902 (diff) |
mac80211: remove unnecessary BUG_ON()
The BUG_ON(!err) can't be triggered in the code path, so remove
it.
Signed-off-by: Zhao, Gang <gamerh2o@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r-- | net/mac80211/sta_info.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index 137a192e64bc..c34a5f97abc7 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c | |||
@@ -552,7 +552,7 @@ static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU) | |||
552 | int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU) | 552 | int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU) |
553 | { | 553 | { |
554 | struct ieee80211_local *local = sta->local; | 554 | struct ieee80211_local *local = sta->local; |
555 | int err = 0; | 555 | int err; |
556 | 556 | ||
557 | might_sleep(); | 557 | might_sleep(); |
558 | 558 | ||
@@ -570,7 +570,6 @@ int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU) | |||
570 | 570 | ||
571 | return 0; | 571 | return 0; |
572 | out_free: | 572 | out_free: |
573 | BUG_ON(!err); | ||
574 | sta_info_free(local, sta); | 573 | sta_info_free(local, sta); |
575 | return err; | 574 | return err; |
576 | } | 575 | } |