Changes in uspace/drv/nic/rtl8139/driver.h [bf84871:f0b74b2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/rtl8139/driver.h
rbf84871 rf0b74b2 30 30 #define RTL8139_DRIVER_H_ 31 31 32 #include " rtl8139_defs.h"33 #include " rtl8139_general.h"32 #include "defs.h" 33 #include "general.h" 34 34 #include <sys/types.h> 35 35 #include <stdint.h> 36 #include <dma.h>37 36 38 37 /** The driver name */ … … 97 96 * Each buffer takes 2kB 98 97 */ 99 dma_mem_t tx_buff_mem; 98 void *tx_buff_phys; 99 void *tx_buff_virt; 100 100 101 /** Virtual adresses of the Tx buffers */ 101 102 void *tx_buff[TX_BUFF_COUNT]; … … 112 113 113 114 /** Buffer for receiving packets */ 114 dma_mem_t rx_buff; 115 void *rx_buff_phys; 116 void *rx_buff_virt; 115 117 116 118 /** Receiver control register data */
Note:
See TracChangeset
for help on using the changeset viewer.