coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
pcix.h
Go to the documentation of this file.
1 #ifndef DEVICE_PCIX_H
2 #define DEVICE_PCIX_H
3 /* (c) 2005 Linux Networx GPL see COPYING for details */
4 
5 #include <device/device.h>
6 #include <stdint.h>
7 
8 void pcix_scan_bridge(struct device *dev);
9 
10 const char *pcix_speed(u16 sstatus);
11 
13 
14 #endif /* DEVICE_PCIX_H */
struct device_operations default_pcix_ops_bus
Definition: pcix_device.c:121
const char * pcix_speed(u16 sstatus)
Definition: pcix_device.c:56
void pcix_scan_bridge(struct device *dev)
Definition: pcix_device.c:97
uint16_t u16
Definition: stdint.h:48
Definition: device.h:107