blob: 690ed6fb8cb81594f4595112ec209b8654743043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright (c) 2006 Dell, Inc.
* by Matt Domsch <Matt_Domsch@dell.com>
* Licensed under the GNU General Public license, version 2.
*/
#ifndef BIOS_DEVICE_H_INCLUDED
#define BIOS_DEVICE_H_INCLUDED
#include <pci/pci.h>
#include "list.h"
#include "eths.h"
#include "pci.h"
#include "naming_policy.h"
struct bios_device {
struct list_head node;
struct network_device *netdev;
struct pci_device *pcidev;
char *bios_name;
int duplicate;
};
static inline int is_pci(const struct bios_device *dev)
{
return dev->pcidev != NULL;
}
#endif /* BIOS_DEVICE_H_INCLUDED */
|