Changes in uspace/drv/nic/e1k/e1k.h [c4be33a:9916841] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/e1k/e1k.h
rc4be33a r9916841 49 49 50 50 /** Receive descriptior */ 51 typedef struct {51 typedef struct e1000_rx_descriptor { 52 52 /** Buffer Address - physical */ 53 53 uint64_t phys_addr; … … 57 57 uint16_t checksum; 58 58 /** Status field */ 59 uint8_t status;59 uint8_t status; 60 60 /** Errors field */ 61 61 uint8_t errors; … … 65 65 66 66 /** Legacy transmit descriptior */ 67 typedef struct {67 typedef struct e1000_tx_descriptor { 68 68 /** Buffer Address - physical */ 69 69 uint64_t phys_addr; … … 75 75 uint8_t command; 76 76 /** Status field, upper bits are reserved */ 77 uint8_t status;77 uint8_t status; 78 78 /** Checksum Start Field */ 79 79 uint8_t checksum_start_field;
Note:
See TracChangeset
for help on using the changeset viewer.