/* * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. * * Copyright (C) 2012 John Crispin <john@phrozen.org> */ #include <linux/of_irq.h> #include <linux/of_pci.h> int (*ltq_pci_plat_arch_init)(struct pci_dev *dev) = NULL; int (*ltq_pci_plat_dev_init)(struct pci_dev *dev) = NULL;
int pcibios_plat_dev_init(struct pci_dev *dev) { if (ltq_pci_plat_arch_init) return ltq_pci_plat_arch_init(dev); if (ltq_pci_plat_dev_init) return ltq_pci_plat_dev_init(dev); return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
John Crispin | 33 | 100.00% | 1 | 100.00% |
Total | 33 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
John Crispin | 26 | 96.30% | 1 | 50.00% |
Grant C. Likely | 1 | 3.70% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
John Crispin | 94 | 98.95% | 2 | 66.67% |
Grant C. Likely | 1 | 1.05% | 1 | 33.33% |
Total | 95 | 100.00% | 3 | 100.00% |