diff options
Diffstat (limited to 'drivers/net/wireless/libertas/cmd.c')
-rw-r--r-- | drivers/net/wireless/libertas/cmd.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/cmd.c b/drivers/net/wireless/libertas/cmd.c index 4e6d01948372..4a82f5114ca0 100644 --- a/drivers/net/wireless/libertas/cmd.c +++ b/drivers/net/wireless/libertas/cmd.c | |||
@@ -825,6 +825,22 @@ out: | |||
825 | return ret; | 825 | return ret; |
826 | } | 826 | } |
827 | 827 | ||
828 | int lbs_update_channel(struct lbs_private *priv) | ||
829 | { | ||
830 | int ret; | ||
831 | |||
832 | /* the channel in f/w could be out of sync; get the current channel */ | ||
833 | lbs_deb_enter(LBS_DEB_ASSOC); | ||
834 | |||
835 | ret = lbs_get_channel(priv); | ||
836 | if (ret > 0) { | ||
837 | priv->curbssparams.channel = ret; | ||
838 | ret = 0; | ||
839 | } | ||
840 | lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret); | ||
841 | return ret; | ||
842 | } | ||
843 | |||
828 | /** | 844 | /** |
829 | * @brief Set the radio channel | 845 | * @brief Set the radio channel |
830 | * | 846 | * |