Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fixups-sh03.c
Go to the documentation of this file.
1 #include <linux/kernel.h>
2 #include <linux/init.h>
3 #include <linux/types.h>
4 #include <linux/pci.h>
5 #include <linux/sh_intc.h>
6 
8 {
9  int irq;
10 
11  if (dev->bus->number == 0) {
12  switch (slot) {
13  case 4: return evt2irq(0x2a0); /* eth0 */
14  case 8: return evt2irq(0x2a0); /* eth1 */
15  case 6: return evt2irq(0x240); /* PCI bridge */
16  default:
17  printk(KERN_ERR "PCI: Bad IRQ mapping request "
18  "for slot %d\n", slot);
19  return evt2irq(0x240);
20  }
21  } else {
22  switch (pin) {
23  case 0: irq = evt2irq(0x240); break;
24  case 1: irq = evt2irq(0x240); break;
25  case 2: irq = evt2irq(0x240); break;
26  case 3: irq = evt2irq(0x240); break;
27  case 4: irq = evt2irq(0x240); break;
28  default: irq = -1; break;
29  }
30  }
31  return irq;
32 }