diff options
author | Binoy Jayan <binoy.jayan@linaro.org> | 2017-06-08 15:33:03 +0530 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2017-06-13 10:05:05 +0300 |
commit | 1abf9ae719f6de71fb90d3169d575630be612619 (patch) | |
tree | deb4b0ff25c09fc040883a0e788219671f6e1601 /drivers/net/wireless/marvell/mwifiex/main.h | |
parent | c42ea613353cd28f741d9389f52b4b42a9ce2eb9 (diff) | |
download | linux-1abf9ae719f6de71fb90d3169d575630be612619.tar.gz linux-1abf9ae719f6de71fb90d3169d575630be612619.tar.bz2 linux-1abf9ae719f6de71fb90d3169d575630be612619.zip |
mwifiex: Replace semaphore async_sem with mutex
The semaphore 'async_sem' is used as a simple mutex, so
it should be written as one. Semaphores are going away in the future.
Signed-off-by: Binoy Jayan <binoy.jayan@linaro.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/marvell/mwifiex/main.h')
-rw-r--r-- | drivers/net/wireless/marvell/mwifiex/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/main.h b/drivers/net/wireless/marvell/mwifiex/main.h index c37fb2606502..f8cf3079ac7d 100644 --- a/drivers/net/wireless/marvell/mwifiex/main.h +++ b/drivers/net/wireless/marvell/mwifiex/main.h @@ -629,7 +629,7 @@ struct mwifiex_private { struct dentry *dfs_dev_dir; #endif u16 current_key_index; - struct semaphore async_sem; + struct mutex async_mutex; struct cfg80211_scan_request *scan_request; u8 cfg_bssid[6]; struct wps wps; |