Lines Matching refs:where
582 void __iomem *(*map_bus)(struct pci_bus *bus, unsigned int devfn, int where);
583 int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val);
584 int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val);
884 int where, u8 *val);
886 int where, u16 *val);
888 int where, u32 *val);
890 int where, u8 val);
892 int where, u16 val);
894 int where, u32 val);
897 int where, int size, u32 *val);
899 int where, int size, u32 val);
901 int where, int size, u32 *val);
903 int where, int size, u32 val);
907 static inline int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val) in pci_read_config_byte() argument
909 return pci_bus_read_config_byte(dev->bus, dev->devfn, where, val); in pci_read_config_byte()
911 static inline int pci_read_config_word(const struct pci_dev *dev, int where, u16 *val) in pci_read_config_word() argument
913 return pci_bus_read_config_word(dev->bus, dev->devfn, where, val); in pci_read_config_word()
915 static inline int pci_read_config_dword(const struct pci_dev *dev, int where, in pci_read_config_dword() argument
918 return pci_bus_read_config_dword(dev->bus, dev->devfn, where, val); in pci_read_config_dword()
920 static inline int pci_write_config_byte(const struct pci_dev *dev, int where, u8 val) in pci_write_config_byte() argument
922 return pci_bus_write_config_byte(dev->bus, dev->devfn, where, val); in pci_write_config_byte()
924 static inline int pci_write_config_word(const struct pci_dev *dev, int where, u16 val) in pci_write_config_word() argument
926 return pci_bus_write_config_word(dev->bus, dev->devfn, where, val); in pci_write_config_word()
928 static inline int pci_write_config_dword(const struct pci_dev *dev, int where, in pci_write_config_dword() argument
931 return pci_bus_write_config_dword(dev->bus, dev->devfn, where, val); in pci_write_config_dword()
968 int pci_user_read_config_byte(struct pci_dev *dev, int where, u8 *val);
969 int pci_user_read_config_word(struct pci_dev *dev, int where, u16 *val);
970 int pci_user_read_config_dword(struct pci_dev *dev, int where, u32 *val);
971 int pci_user_write_config_byte(struct pci_dev *dev, int where, u8 val);
972 int pci_user_write_config_word(struct pci_dev *dev, int where, u16 val);
973 int pci_user_write_config_dword(struct pci_dev *dev, int where, u32 val);
1401 int where, t val) \