rtl8188eu: Remove most typedef statements from include/osdep_service.h

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2015-03-16 08:54:18 -05:00
parent 26b163f24f
commit e2285839e9
46 changed files with 531 additions and 733 deletions

View file

@ -25,9 +25,9 @@
#include <drv_types.h>
struct pkt_file {
_pkt *pkt;
struct sk_buff *pkt;
SIZE_T pkt_len; //the remainder length of the open_file
_buffer *cur_buffer;
unsigned char *cur_buffer;
u8 *buf_start;
u8 *cur_addr;
SIZE_T buf_len;
@ -41,8 +41,8 @@ struct sta_xmit_priv;
struct xmit_frame;
struct xmit_buf;
int _rtw_xmit_entry(_pkt *pkt, _nic_hdl pnetdev);
int rtw_xmit_entry(_pkt *pkt, _nic_hdl pnetdev);
int _rtw_xmit_entry(struct sk_buff *pkt, struct net_device * pnetdev);
int rtw_xmit_entry(struct sk_buff *pkt, struct net_device * pnetdev);
void rtw_os_xmit_schedule(struct adapter *padapter);
@ -50,11 +50,11 @@ int rtw_os_xmit_resource_alloc(struct adapter *padapter, struct xmit_buf *pxmitb
void rtw_os_xmit_resource_free(struct adapter *padapter, struct xmit_buf *pxmitbuf,u32 free_sz);
uint rtw_remainder_len(struct pkt_file *pfile);
void _rtw_open_pktfile(_pkt *pkt, struct pkt_file *pfile);
void _rtw_open_pktfile(struct sk_buff *pkt, struct pkt_file *pfile);
uint _rtw_pktfile_read (struct pkt_file *pfile, u8 *rmem, uint rlen);
sint rtw_endofpktfile (struct pkt_file *pfile);
void rtw_os_pkt_complete(struct adapter *padapter, _pkt *pkt);
void rtw_os_pkt_complete(struct adapter *padapter, struct sk_buff *pkt);
void rtw_os_xmit_complete(struct adapter *padapter, struct xmit_frame *pxframe);
#endif //__XMIT_OSDEP_H_