cregit-Linux how code gets into the kernel

Release 4.14 arch/mips/pci/fixup-lantiq.c

Directory: arch/mips/pci
/*
 *  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

PersonTokensPropCommitsCommitProp
John Crispin33100.00%1100.00%
Total33100.00%1100.00%


int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) { return of_irq_parse_and_map_pci(dev, slot, pin); }

Contributors

PersonTokensPropCommitsCommitProp
John Crispin2696.30%150.00%
Grant C. Likely13.70%150.00%
Total27100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
John Crispin9498.95%266.67%
Grant C. Likely11.05%133.33%
Total95100.00%3100.00%
Directory: arch/mips/pci
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.