Release 4.14 arch/x86/include/asm/pci_64.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_X86_PCI_64_H
#define _ASM_X86_PCI_64_H
#ifdef __KERNEL__
#ifdef CONFIG_CALGARY_IOMMU
static inline void *pci_iommu(struct pci_bus *bus)
{
struct pci_sysdata *sd = bus->sysdata;
return sd->iommu;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Muli Ben-Yehuda | 27 | 100.00% | 1 | 100.00% |
Total | 27 | 100.00% | 1 | 100.00% |
static inline void set_pci_iommu(struct pci_bus *bus, void *val)
{
struct pci_sysdata *sd = bus->sysdata;
sd->iommu = val;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Muli Ben-Yehuda | 31 | 100.00% | 1 | 100.00% |
Total | 31 | 100.00% | 1 | 100.00% |
#endif /* CONFIG_CALGARY_IOMMU */
extern int (*pci_config_read)(int seg, int bus, int dev, int fn,
int reg, int len, u32 *value);
extern int (*pci_config_write)(int seg, int bus, int dev, int fn,
int reg, int len, u32 value);
#endif /* __KERNEL__ */
#endif /* _ASM_X86_PCI_64_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andi Kleen | 69 | 49.64% | 2 | 33.33% |
Muli Ben-Yehuda | 64 | 46.04% | 1 | 16.67% |
H. Peter Anvin | 3 | 2.16% | 1 | 16.67% |
Andrew Morton | 2 | 1.44% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 0.72% | 1 | 16.67% |
Total | 139 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.