mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 22:43:04 +00:00
rtl8188eu: Convert typedef for _sema and _pwrlock to struct semaphore
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
73f9c27ffd
commit
5f133c3764
10 changed files with 23 additions and 30 deletions
|
@ -296,8 +296,8 @@ struct xmit_priv {
|
|||
|
||||
_lock lock;
|
||||
|
||||
_sema xmit_sema;
|
||||
_sema terminate_xmitthread_sema;
|
||||
struct semaphore xmit_sema;
|
||||
struct semaphore terminate_xmitthread_sema;
|
||||
|
||||
//_queue blk_strms[MAX_NUMBLKS];
|
||||
_queue be_pending;
|
||||
|
@ -343,7 +343,7 @@ struct xmit_priv {
|
|||
u8 hwxmit_entry;
|
||||
|
||||
u8 wmm_para_seq[4];//sequence for wmm ac parameter strength from large to small. it's value is 0->vo, 1->vi, 2->be, 3->bk.
|
||||
_sema tx_retevt;//all tx return event;
|
||||
struct semaphore tx_retevt;//all tx return event;
|
||||
u8 txirp_cnt;//
|
||||
struct tasklet_struct xmit_tasklet;
|
||||
//per AC pending irp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue