Release 4.18 arch/arm/include/asm/pci.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ASMARM_PCI_H
#define ASMARM_PCI_H
#ifdef __KERNEL__
#include <asm/mach/pci.h> /* for pci_sys_data */
extern unsigned long pcibios_min_io;
#define PCIBIOS_MIN_IO pcibios_min_io
extern unsigned long pcibios_min_mem;
#define PCIBIOS_MIN_MEM pcibios_min_mem
#define pcibios_assign_all_busses() pci_has_flag(PCI_REASSIGN_ALL_BUS)
#ifdef CONFIG_PCI_DOMAINS
static inline int pci_proc_domain(struct pci_bus *bus)
{
return pci_domain_nr(bus);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Anton Vorontsov | 18 | 100.00% | 1 | 100.00% |
Total | 18 | 100.00% | 1 | 100.00% |
#endif /* CONFIG_PCI_DOMAINS */
#define HAVE_PCI_MMAP
#define ARCH_GENERIC_PCI_MMAP_RESOURCE
static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
{
return channel ? 15 : 14;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 22 | 100.00% | 2 | 100.00% |
Total | 22 | 100.00% | 2 | 100.00% |
#endif /* __KERNEL__ */
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 27 | 28.72% | 4 | 28.57% |
Anton Vorontsov | 24 | 25.53% | 1 | 7.14% |
Rob Herring | 19 | 20.21% | 2 | 14.29% |
Linus Torvalds (pre-git) | 14 | 14.89% | 3 | 21.43% |
Björn Helgaas | 4 | 4.26% | 1 | 7.14% |
David Woodhouse | 3 | 3.19% | 1 | 7.14% |
Mike Rapoport | 2 | 2.13% | 1 | 7.14% |
Greg Kroah-Hartman | 1 | 1.06% | 1 | 7.14% |
Total | 94 | 100.00% | 14 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.