Lines Matching refs:where

570 	void __iomem *(*map_bus)(struct pci_bus *bus, unsigned int devfn, int where);
571 int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val);
572 int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val);
863 int where, u8 *val);
865 int where, u16 *val);
867 int where, u32 *val);
869 int where, u8 val);
871 int where, u16 val);
873 int where, u32 val);
876 int where, int size, u32 *val);
878 int where, int size, u32 val);
880 int where, int size, u32 *val);
882 int where, int size, u32 val);
886 static inline int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val) in pci_read_config_byte() argument
888 return pci_bus_read_config_byte(dev->bus, dev->devfn, where, val); in pci_read_config_byte()
890 static inline int pci_read_config_word(const struct pci_dev *dev, int where, u16 *val) in pci_read_config_word() argument
892 return pci_bus_read_config_word(dev->bus, dev->devfn, where, val); in pci_read_config_word()
894 static inline int pci_read_config_dword(const struct pci_dev *dev, int where, in pci_read_config_dword() argument
897 return pci_bus_read_config_dword(dev->bus, dev->devfn, where, val); in pci_read_config_dword()
899 static inline int pci_write_config_byte(const struct pci_dev *dev, int where, u8 val) in pci_write_config_byte() argument
901 return pci_bus_write_config_byte(dev->bus, dev->devfn, where, val); in pci_write_config_byte()
903 static inline int pci_write_config_word(const struct pci_dev *dev, int where, u16 val) in pci_write_config_word() argument
905 return pci_bus_write_config_word(dev->bus, dev->devfn, where, val); in pci_write_config_word()
907 static inline int pci_write_config_dword(const struct pci_dev *dev, int where, in pci_write_config_dword() argument
910 return pci_bus_write_config_dword(dev->bus, dev->devfn, where, val); in pci_write_config_dword()
947 int pci_user_read_config_byte(struct pci_dev *dev, int where, u8 *val);
948 int pci_user_read_config_word(struct pci_dev *dev, int where, u16 *val);
949 int pci_user_read_config_dword(struct pci_dev *dev, int where, u32 *val);
950 int pci_user_write_config_byte(struct pci_dev *dev, int where, u8 val);
951 int pci_user_write_config_word(struct pci_dev *dev, int where, u16 val);
952 int pci_user_write_config_dword(struct pci_dev *dev, int where, u32 val);
1363 int where, t val) \