Changeset 153cc76a in mainline for uspace/drv/nic/e1k/e1k.h


Ignore:
Timestamp:
2011-12-23T16:42:22Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
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.
Message:

Mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/e1k/e1k.h

    r4291215 r153cc76a  
    4949
    5050/** Receive descriptior */
    51 typedef struct e1000_rx_descriptor {
     51typedef struct {
    5252        /** Buffer Address - physical */
    5353        uint64_t phys_addr;
     
    5757        uint16_t checksum;
    5858        /** Status field */
    59          uint8_t status;
     59        uint8_t status;
    6060        /** Errors field */
    6161        uint8_t errors;
     
    6565
    6666/** Legacy transmit descriptior */
    67 typedef struct e1000_tx_descriptor {
     67typedef struct {
    6868        /** Buffer Address - physical */
    6969        uint64_t phys_addr;
     
    7575        uint8_t command;
    7676        /** Status field, upper bits are reserved */
    77          uint8_t status;
     77        uint8_t status;
    7878        /** Checksum Start Field */
    7979        uint8_t checksum_start_field;
Note: See TracChangeset for help on using the changeset viewer.