Commit b808ab16 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by John W. Linville

ieee80211_rate: missed unlock

Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 2ef19e63
...@@ -33,6 +33,7 @@ int ieee80211_rate_control_register(struct rate_control_ops *ops) ...@@ -33,6 +33,7 @@ int ieee80211_rate_control_register(struct rate_control_ops *ops)
if (!strcmp(alg->ops->name, ops->name)) { if (!strcmp(alg->ops->name, ops->name)) {
/* don't register an algorithm twice */ /* don't register an algorithm twice */
WARN_ON(1); WARN_ON(1);
mutex_unlock(&rate_ctrl_mutex);
return -EALREADY; return -EALREADY;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment