Commit eeeb5fb9 authored by Joshua Houghton's avatar Joshua Houghton Committed by Greg Kroah-Hartman

drivers: wilc1000: remove references to semaphores

* Update the comments that refer to semaphores
* Remove redundant includes to semphore.h
Signed-off-by: default avatarJoshua Houghton <josh@awful.name>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent aec8755d
...@@ -3,7 +3,6 @@ TODO: ...@@ -3,7 +3,6 @@ TODO:
- remove OS wrapper functions - remove OS wrapper functions
- remove custom debug and tracing functions - remove custom debug and tracing functions
- rework comments and function headers(also coding style) - rework comments and function headers(also coding style)
- replace all semaphores with mutexes or completions
- Move handling for each individual members of 'union message_body' out - Move handling for each individual members of 'union message_body' out
into a separate 'struct work_struct' and completely remove the multiplexer into a separate 'struct work_struct' and completely remove the multiplexer
that is currently part of host_if_work(), allowing movement of the that is currently part of host_if_work(), allowing movement of the
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/skbuff.h> #include <linux/skbuff.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/semaphore.h>
#include <linux/completion.h> #include <linux/completion.h>
static int dev_state_ev_handler(struct notifier_block *this, static int dev_state_ev_handler(struct notifier_block *this,
......
...@@ -131,7 +131,7 @@ struct wilc_priv { ...@@ -131,7 +131,7 @@ struct wilc_priv {
struct wilc_wfi_key *wilc_gtk[MAX_NUM_STA]; struct wilc_wfi_key *wilc_gtk[MAX_NUM_STA];
struct wilc_wfi_key *wilc_ptk[MAX_NUM_STA]; struct wilc_wfi_key *wilc_ptk[MAX_NUM_STA];
u8 wilc_groupkey; u8 wilc_groupkey;
/* semaphores */ /* mutexes */
struct mutex scan_req_lock; struct mutex scan_req_lock;
/* */ /* */
bool gbAutoRateAdjusted; bool gbAutoRateAdjusted;
......
...@@ -192,7 +192,7 @@ ...@@ -192,7 +192,7 @@
#define ENABLE_RX_VMM (SEL_VMM_TBL1 | EN_VMM) #define ENABLE_RX_VMM (SEL_VMM_TBL1 | EN_VMM)
#define ENABLE_TX_VMM (SEL_VMM_TBL0 | EN_VMM) #define ENABLE_TX_VMM (SEL_VMM_TBL0 | EN_VMM)
/*time for expiring the semaphores of cfg packets*/ /*time for expiring the completion of cfg packets*/
#define CFG_PKTS_TIMEOUT 2000 #define CFG_PKTS_TIMEOUT 2000
/******************************************** /********************************************
* *
......
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
#ifndef WILC_WLAN_IF_H #ifndef WILC_WLAN_IF_H
#define WILC_WLAN_IF_H #define WILC_WLAN_IF_H
#include <linux/semaphore.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
/******************************************** /********************************************
......
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