xref: /aosp_15_r20/external/coreboot/src/include/device/pcix.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef DEVICE_PCIX_H
4 #define DEVICE_PCIX_H
5 /* (c) 2005 Linux Networx GPL see COPYING for details */
6 
7 #include <device/device.h>
8 #include <stdint.h>
9 
10 void pcix_scan_bridge(struct device *dev);
11 
12 const char *pcix_speed(u16 sstatus);
13 
14 extern struct device_operations default_pcix_ops_bus;
15 
16 #endif /* DEVICE_PCIX_H */
17