rtl8188eu: Convert typedef for _lock to spinlock_t

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-24 15:00:47 -05:00
parent 5f133c3764
commit 7b01fe6191
10 changed files with 27 additions and 30 deletions

View file

@ -31,7 +31,6 @@
#include <linux/semaphore.h>
#endif
#include <linux/list.h>
//#include <linux/smp_lock.h>
#include <linux/spinlock.h>
#include <asm/atomic.h>
@ -290,7 +289,7 @@ Below is the data structure used by _io_handler
*/
struct io_queue {
_lock lock;
spinlock_t lock;
_list free_ioreqs;
_list pending; //The io_req list that will be served in the single protocol read/write.
_list processing;