Changeset 7943c43 in mainline for uspace/drv/nic/rtl8139/driver.h
- Timestamp:
- 2012-01-16T22:45:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 32817cc, 3fe58d3c
- Parents:
- 9117ef9b (diff), 3ea725e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/rtl8139/driver.h
r9117ef9b r7943c43 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.