5817c56d19
Change-Id: I746ea7805bae553a146130994d8174aa2e189610 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43368 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
14 lines
314 B
C
14 lines
314 B
C
#ifndef DEVICE_PCIX_H
|
|
#define DEVICE_PCIX_H
|
|
/* (c) 2005 Linux Networx GPL see COPYING for details */
|
|
|
|
#include <device/device.h>
|
|
#include <stdint.h>
|
|
|
|
void pcix_scan_bridge(struct device *dev);
|
|
|
|
const char *pcix_speed(u16 sstatus);
|
|
|
|
extern struct device_operations default_pcix_ops_bus;
|
|
|
|
#endif /* DEVICE_PCIX_H */
|