diff options
author | Michael Brown <mcb30@etherboot.org> | 2009-05-01 15:58:20 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2009-05-18 08:24:45 +0100 |
commit | a13fc96cb37ff650ee3998b90b3fb2502ecd5804 (patch) | |
tree | f45d1a5c037fe80f9645090558f7db63ad63b235 /src/include | |
parent | 4188d517534d1350d48e68356cef99a5208787b4 (diff) | |
download | ipxe-a13fc96cb37ff650ee3998b90b3fb2502ecd5804.tar.gz |
[legacy] Remove long-obsolete old dhcp.h file
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/dhcp.h | 12 | ||||
-rw-r--r-- | src/include/nic.h | 2 |
2 files changed, 0 insertions, 14 deletions
diff --git a/src/include/dhcp.h b/src/include/dhcp.h deleted file mode 100644 index deba219bc..000000000 --- a/src/include/dhcp.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef DHCP_H -#define DHCP_H - -#include "stdint.h" - -struct dhcp_dev_id { - uint8_t bus_type; - uint16_t vendor_id; - uint16_t device_id; -} __attribute__ (( packed )); - -#endif /* DHCP_H */ diff --git a/src/include/nic.h b/src/include/nic.h index 186b2ea48..f55db4a5f 100644 --- a/src/include/nic.h +++ b/src/include/nic.h @@ -18,7 +18,6 @@ #include <gpxe/eisa.h> #include <gpxe/mca.h> #include <gpxe/io.h> -#include "dhcp.h" typedef enum { DISABLE = 0, @@ -45,7 +44,6 @@ struct nic { unsigned char irqno; unsigned int mbps; duplex_t duplex; - struct dhcp_dev_id dhcp_dev_id; void *priv_data; /* driver private data */ }; |