/drivers/staging/rtl8712/xmit_osdep.h
https://bitbucket.org/wisechild/galaxy-nexus · C++ Header · 38 lines · 31 code · 7 blank · 0 comment · 0 complexity · 69c98c6bd40c601fcc981f7ed8ce9adb MD5 · raw file
- #ifndef __XMIT_OSDEP_H_
- #define __XMIT_OSDEP_H_
- #include "osdep_service.h"
- #include "drv_types.h"
- struct pkt_file {
- _pkt *pkt;
- u32 pkt_len; /*the remainder length of the open_file*/
- _buffer *cur_buffer;
- u8 *buf_start;
- u8 *cur_addr;
- u32 buf_len;
- };
- #define NR_XMITFRAME 256
- struct xmit_priv;
- struct pkt_attrib;
- struct sta_xmit_priv;
- struct xmit_frame;
- struct xmit_buf;
- int r8712_xmit_entry(_pkt *pkt, struct net_device *pnetdev);
- int r8712_xmit_resource_alloc(struct _adapter *padapter,
- struct xmit_buf *pxmitbuf);
- void r8712_xmit_resource_free(struct _adapter *padapter,
- struct xmit_buf *pxmitbuf);
- void r8712_set_qos(struct pkt_file *ppktfile,
- struct pkt_attrib *pattrib);
- void _r8712_open_pktfile(_pkt *pktptr, struct pkt_file *pfile);
- uint _r8712_pktfile_read(struct pkt_file *pfile, u8 *rmem, uint rlen);
- sint r8712_endofpktfile(struct pkt_file *pfile);
- void r8712_xmit_complete(struct _adapter *padapter,
- struct xmit_frame *pxframe);
- #endif