blob: f06f53ec7a558bd0b238275548b42b7468a2454c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef PCI_ONBOARD_H
#define PCI_ONBOARD_H
struct drivers_pci_onboard_config
{
unsigned long rom_address;
};
struct chip_operations;
extern struct chip_operations drivers_pci_onboard_ops;
#endif
|