blob: 220bffd19a88a16d2d5413f120e74505d59fa312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (c) 2006 Dell, Inc.
* by Matt Domsch <Matt_Domsch@dell.com>
* Licensed under the GNU General Public license, version 2.
*/
#ifndef LIBBIOSDEVICE_STATE_H_INCLUDED
#define LIBBIOSDEVICE_STATE_H_INCLUDED
#include <pci/pci.h>
#include "list.h"
#include "pirq.h"
struct libbiosdevname_state {
struct list_head bios_devices;
struct list_head pci_devices;
struct list_head network_devices;
struct pci_access *pacc;
struct routing_table *pirq_table;
};
#endif /* LIBBIOSDEVICESTATE_H_INCLUDED */
|