Changeset 153cc76a in mainline for uspace/drv/nic/e1k/e1k.h
- Timestamp:
- 2011-12-23T16:42:22Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7e1b130
- Parents:
- 4291215 (diff), 2f0dd2a (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/e1k/e1k.h
r4291215 r153cc76a 49 49 50 50 /** Receive descriptior */ 51 typedef struct e1000_rx_descriptor{51 typedef struct { 52 52 /** Buffer Address - physical */ 53 53 uint64_t phys_addr; … … 57 57 uint16_t checksum; 58 58 /** Status field */ 59 59 uint8_t status; 60 60 /** Errors field */ 61 61 uint8_t errors; … … 65 65 66 66 /** Legacy transmit descriptior */ 67 typedef struct e1000_tx_descriptor{67 typedef struct { 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 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.