mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 22:43:04 +00:00
rtl8188eu: Convert typedef for _list to struct list_head
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
6717ae7e4f
commit
3d755766c9
23 changed files with 103 additions and 154 deletions
|
@ -252,7 +252,7 @@ struct sta_recv_priv {
|
|||
|
||||
struct recv_buf
|
||||
{
|
||||
_list list;
|
||||
struct list_head list;
|
||||
|
||||
spinlock_t recvbuf_lock;
|
||||
|
||||
|
@ -296,7 +296,7 @@ struct recv_buf
|
|||
*/
|
||||
struct recv_frame_hdr
|
||||
{
|
||||
_list list;
|
||||
struct list_head list;
|
||||
struct sk_buff *pkt;
|
||||
struct sk_buff *pkt_newalloc;
|
||||
|
||||
|
@ -327,7 +327,7 @@ struct recv_frame_hdr
|
|||
union recv_frame{
|
||||
|
||||
union{
|
||||
_list list;
|
||||
struct list_head list;
|
||||
struct recv_frame_hdr hdr;
|
||||
uint mem[RECVFRAME_HDR_ALIGN>>2];
|
||||
}u;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue