diff options
Diffstat (limited to 'include/linux/pci.h')
| -rw-r--r-- | include/linux/pci.h | 25 | 
1 files changed, 1 insertions, 24 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index be1de01de1c..ee2179546c6 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -13,32 +13,9 @@   *	PCI to PCI Bridge Specification   *	PCI System Design Guide   */ -  #ifndef LINUX_PCI_H  #define LINUX_PCI_H -#include <linux/pci_regs.h>	/* The pci register defines */ - -/* - * The PCI interface treats multi-function devices as independent - * devices.  The slot/function address of each device is encoded - * in a single byte as follows: - * - *	7:3 = slot - *	2:0 = function - */ -#define PCI_DEVFN(slot, func)	((((slot) & 0x1f) << 3) | ((func) & 0x07)) -#define PCI_SLOT(devfn)		(((devfn) >> 3) & 0x1f) -#define PCI_FUNC(devfn)		((devfn) & 0x07) - -/* Ioctls for /proc/bus/pci/X/Y nodes. */ -#define PCIIOC_BASE		('P' << 24 | 'C' << 16 | 'I' << 8) -#define PCIIOC_CONTROLLER	(PCIIOC_BASE | 0x00)	/* Get controller for PCI device. */ -#define PCIIOC_MMAP_IS_IO	(PCIIOC_BASE | 0x01)	/* Set mmap state to I/O space. */ -#define PCIIOC_MMAP_IS_MEM	(PCIIOC_BASE | 0x02)	/* Set mmap state to MEM space. */ -#define PCIIOC_WRITE_COMBINE	(PCIIOC_BASE | 0x03)	/* Enable/disable write-combining. */ - -#ifdef __KERNEL__  #include <linux/mod_devicetable.h> @@ -53,6 +30,7 @@  #include <linux/device.h>  #include <linux/io.h>  #include <linux/irqreturn.h> +#include <uapi/linux/pci.h>  /* Include the ID list */  #include <linux/pci_ids.h> @@ -1831,5 +1809,4 @@ static inline struct eeh_dev *pci_dev_to_eeh_dev(struct pci_dev *pdev)   */  struct pci_dev *pci_find_upstream_pcie_bridge(struct pci_dev *pdev); -#endif /* __KERNEL__ */  #endif /* LINUX_PCI_H */  |