blob: 634f836299691a4733758194098ebcf45eed2e5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/***************************************************************************
*
* devinfo_pci.h : definitions for PCI devices
*
* Copyright 2011 Andrew Stormont <andyjstormont@gmail.com>
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Licensed under the Academic Free License version 2.1
*
**************************************************************************/
#ifndef DEVINFO_PCI_H
#define DEVINFO_PCI_H
#include "devinfo.h"
extern DevinfoDevHandler devinfo_pci_handler;
#endif /* DEVINFO_PCI_H */
|