fixup-malta.c (db8c246937713e60b7628661ccc187eeb81f2bae) | fixup-malta.c (2eaaac508a7435dda92f9f16d612a1354ea3d7c4) |
---|---|
1#include <linux/init.h> 2#include <linux/pci.h> 3 4/* PCI interrupt pins */ 5#define PCIA 1 6#define PCIB 2 7#define PCIC 3 8#define PCID 4 9 10/* This table is filled in by interrogating the PIIX4 chip */ | 1#include <linux/init.h> 2#include <linux/pci.h> 3 4/* PCI interrupt pins */ 5#define PCIA 1 6#define PCIB 2 7#define PCIC 3 8#define PCID 4 9 10/* This table is filled in by interrogating the PIIX4 chip */ |
11static char pci_irq[5] __initdata; | 11static char pci_irq[5] __devinitdata = { 12}; |
12 13static char irq_tab[][5] __initdata = { 14 /* INTA INTB INTC INTD */ 15 {0, 0, 0, 0, 0 }, /* 0: GT64120 PCI bridge */ 16 {0, 0, 0, 0, 0 }, /* 1: Unused */ 17 {0, 0, 0, 0, 0 }, /* 2: Unused */ 18 {0, 0, 0, 0, 0 }, /* 3: Unused */ 19 {0, 0, 0, 0, 0 }, /* 4: Unused */ --- 98 unchanged lines hidden --- | 13 14static char irq_tab[][5] __initdata = { 15 /* INTA INTB INTC INTD */ 16 {0, 0, 0, 0, 0 }, /* 0: GT64120 PCI bridge */ 17 {0, 0, 0, 0, 0 }, /* 1: Unused */ 18 {0, 0, 0, 0, 0 }, /* 2: Unused */ 19 {0, 0, 0, 0, 0 }, /* 3: Unused */ 20 {0, 0, 0, 0, 0 }, /* 4: Unused */ --- 98 unchanged lines hidden --- |