| .. | .. |
|---|
| 2 | 2 | #ifndef __OF_PCI_H |
|---|
| 3 | 3 | #define __OF_PCI_H |
|---|
| 4 | 4 | |
|---|
| 5 | | -#include <linux/pci.h> |
|---|
| 6 | | -#include <linux/msi.h> |
|---|
| 5 | +#include <linux/types.h> |
|---|
| 6 | +#include <linux/errno.h> |
|---|
| 7 | 7 | |
|---|
| 8 | 8 | struct pci_dev; |
|---|
| 9 | | -struct of_phandle_args; |
|---|
| 10 | 9 | struct device_node; |
|---|
| 11 | 10 | |
|---|
| 12 | 11 | #if IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_PCI) |
|---|
| .. | .. |
|---|
| 14 | 13 | unsigned int devfn); |
|---|
| 15 | 14 | int of_pci_get_devfn(struct device_node *np); |
|---|
| 16 | 15 | void of_pci_check_probe_only(void); |
|---|
| 17 | | -int of_pci_map_rid(struct device_node *np, u32 rid, |
|---|
| 18 | | - const char *map_name, const char *map_mask_name, |
|---|
| 19 | | - struct device_node **target, u32 *id_out); |
|---|
| 20 | 16 | #else |
|---|
| 21 | 17 | static inline struct device_node *of_pci_find_child_device(struct device_node *parent, |
|---|
| 22 | 18 | unsigned int devfn) |
|---|
| .. | .. |
|---|
| 25 | 21 | } |
|---|
| 26 | 22 | |
|---|
| 27 | 23 | static inline int of_pci_get_devfn(struct device_node *np) |
|---|
| 28 | | -{ |
|---|
| 29 | | - return -EINVAL; |
|---|
| 30 | | -} |
|---|
| 31 | | - |
|---|
| 32 | | -static inline int of_pci_map_rid(struct device_node *np, u32 rid, |
|---|
| 33 | | - const char *map_name, const char *map_mask_name, |
|---|
| 34 | | - struct device_node **target, u32 *id_out) |
|---|
| 35 | 24 | { |
|---|
| 36 | 25 | return -EINVAL; |
|---|
| 37 | 26 | } |
|---|