diff options
Diffstat (limited to 'src/bios_device.h')
-rw-r--r-- | src/bios_device.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/bios_device.h b/src/bios_device.h index 8e76e1a..690ed6f 100644 --- a/src/bios_device.h +++ b/src/bios_device.h @@ -10,7 +10,6 @@ #include "list.h" #include "eths.h" #include "pci.h" -#include "pcmcia.h" #include "naming_policy.h" @@ -18,8 +17,8 @@ struct bios_device { struct list_head node; struct network_device *netdev; struct pci_device *pcidev; - struct pcmcia_device *pcmciadev; - char bios_name[IFNAMSIZ]; + char *bios_name; + int duplicate; }; static inline int is_pci(const struct bios_device *dev) @@ -27,9 +26,4 @@ static inline int is_pci(const struct bios_device *dev) return dev->pcidev != NULL; } -static inline int is_pcmcia(const struct bios_device *dev) -{ - return dev->pcmciadev != NULL; -} - #endif /* BIOS_DEVICE_H_INCLUDED */ |