cregit-Linux how code gets into the kernel

Release 4.14 arch/sh/drivers/pci/fixups-sh03.c

// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/pci.h>
#include <linux/sh_intc.h>


int pcibios_map_platform_irq(const struct pci_dev *dev, u8 slot, u8 pin) { int irq; if (dev->bus->number == 0) { switch (slot) { case 4: return evt2irq(0x2a0); /* eth0 */ case 8: return evt2irq(0x2a0); /* eth1 */ case 6: return evt2irq(0x240); /* PCI bridge */ default: printk(KERN_ERR "PCI: Bad IRQ mapping request " "for slot %d\n", slot); return evt2irq(0x240); } } else { switch (pin) { case 0: irq = evt2irq(0x240); break; case 1: irq = evt2irq(0x240); break; case 2: irq = evt2irq(0x240); break; case 3: irq = evt2irq(0x240); break; case 4: irq = evt2irq(0x240); break; default: irq = -1; break; } } return irq; }

Contributors

PersonTokensPropCommitsCommitProp
Paul Mundt15799.37%375.00%
Ralf Bächle10.63%125.00%
Total158100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Paul Mundt17298.85%360.00%
Ralf Bächle10.57%120.00%
Greg Kroah-Hartman10.57%120.00%
Total174100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.