diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-04-13 00:16:42 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-04-13 00:16:42 +0000 |
commit | 17d69d89308f99f67472842178395fea3861ea21 (patch) | |
tree | d24db413ca7d1255019b6d422f90cd4527048b47 /src/include | |
parent | 28590d718bf472570c87014d654a177888e310c9 (diff) | |
download | ipxe-17d69d89308f99f67472842178395fea3861ea21.tar.gz |
Add mbps and duplex to struct nic, since some drivers (e.g. rtl8139)
can fill them in.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/nic.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/include/nic.h b/src/include/nic.h index ae7dd606d..439e5a90b 100644 --- a/src/include/nic.h +++ b/src/include/nic.h @@ -14,6 +14,11 @@ typedef enum { FORCE } irq_action_t; +typedef enum duplex { + HALF_DUPLEX = 1, + FULL_DUPLEX +} duplex_t; + /* * Structure returned from eth_probe and passed to other driver * functions. @@ -26,6 +31,8 @@ struct nic { unsigned int packetlen; unsigned int ioaddr; unsigned char irqno; + unsigned int mbps; + duplex_t duplex; void *priv_data; /* driver can hang private data here */ }; |