2022-07-27 06:18:26 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
#ifndef DEVICE_PCIX_H
|
|
|
|
#define DEVICE_PCIX_H
|
|
|
|
/* (c) 2005 Linux Networx GPL see COPYING for details */
|
|
|
|
|
2020-07-12 09:03:22 +02:00
|
|
|
#include <device/device.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-06-10 23:36:44 +02:00
|
|
|
void pcix_scan_bridge(struct device *dev);
|
2015-03-19 20:04:23 +01:00
|
|
|
|
2010-10-18 02:00:57 +02:00
|
|
|
const char *pcix_speed(u16 sstatus);
|
2005-07-08 04:49:49 +02:00
|
|
|
|
|
|
|
extern struct device_operations default_pcix_ops_bus;
|
|
|
|
|
|
|
|
#endif /* DEVICE_PCIX_H */
|