Lines Matching refs: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);
857 int where, u8 *val);
859 int where, u16 *val);
861 int where, u32 *val);
863 int where, u8 val);
865 int where, u16 val);
867 int where, u32 val);
870 static inline int pci_read_config_byte(const struct pci_dev *dev, int where, u8 *val) in pci_read_config_byte() argument
872 return pci_bus_read_config_byte(dev->bus, dev->devfn, where, val); in pci_read_config_byte()
874 static inline int pci_read_config_word(const struct pci_dev *dev, int where, u16 *val) in pci_read_config_word() argument
876 return pci_bus_read_config_word(dev->bus, dev->devfn, where, val); in pci_read_config_word()
878 static inline int pci_read_config_dword(const struct pci_dev *dev, int where, in pci_read_config_dword() argument
881 return pci_bus_read_config_dword(dev->bus, dev->devfn, where, val); in pci_read_config_dword()
883 static inline int pci_write_config_byte(const struct pci_dev *dev, int where, u8 val) in pci_write_config_byte() argument
885 return pci_bus_write_config_byte(dev->bus, dev->devfn, where, val); in pci_write_config_byte()
887 static inline int pci_write_config_word(const struct pci_dev *dev, int where, u16 val) in pci_write_config_word() argument
889 return pci_bus_write_config_word(dev->bus, dev->devfn, where, val); in pci_write_config_word()
891 static inline int pci_write_config_dword(const struct pci_dev *dev, int where, in pci_write_config_dword() argument
894 return pci_bus_write_config_dword(dev->bus, dev->devfn, where, val); in pci_write_config_dword()
931 int pci_user_read_config_byte(struct pci_dev *dev, int where, u8 *val);
932 int pci_user_read_config_word(struct pci_dev *dev, int where, u16 *val);
933 int pci_user_read_config_dword(struct pci_dev *dev, int where, u32 *val);
934 int pci_user_write_config_byte(struct pci_dev *dev, int where, u8 val);
935 int pci_user_write_config_word(struct pci_dev *dev, int where, u16 val);
936 int pci_user_write_config_dword(struct pci_dev *dev, int where, u32 val);
1344 int where, t val) \