Home | History | Annotate | Download | only in linux

Lines Matching full:val

269 	int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val);
270 int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val);
275 int reg, int len, u32 *val);
277 int reg, int len, u32 val);
459 int pci_bus_read_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 *val);
460 int pci_bus_read_config_word (struct pci_bus *bus, unsigned int devfn, int where, u16 *val);
461 int pci_bus_read_config_dword (struct pci_bus *bus, unsigned int devfn, int where, u32 *val);
462 int pci_bus_write_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 val);
463 int pci_bus_write_config_word (struct pci_bus *bus, unsigned int devfn, int where, u16 val);
464 int pci_bus_write_config_dword (struct pci_bus *bus, unsigned int devfn, int where, u32 val);
466 static inline int pci_read_config_byte(struct pci_dev *dev, int where, u8 *val)
468 return pci_bus_read_config_byte (dev->bus, dev->devfn, where, val);
470 static inline int pci_read_config_word(struct pci_dev *dev, int where, u16 *val)
472 return pci_bus_read_config_word (dev->bus, dev->devfn, where, val);
474 static inline int pci_read_config_dword(struct pci_dev *dev, int where, u32 *val)
476 return pci_bus_read_config_dword (dev->bus, dev->devfn, where, val);
478 static inline int pci_write_config_byte(struct pci_dev *dev, int where, u8 val)
480 return pci_bus_write_config_byte (dev->bus, dev->devfn, where, val);
482 static inline int pci_write_config_word(struct pci_dev *dev, int where, u16 val)
484 return pci_bus_write_config_word (dev->bus, dev->devfn, where, val);
486 static inline int pci_write_config_dword(struct pci_dev *dev, int where, u32 val)
488 return pci_bus_write_config_dword (dev->bus, dev->devfn, where, val);
633 static inline int pci_##o##_config_##s (struct pci_dev *dev, int where, t val) \