diff options
author | Stefan Reinauer <stepan@openbios.org> | 2004-04-24 23:25:56 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2004-04-24 23:25:56 +0000 |
commit | b6ce3ec68ccddc58b7650d6250c77773b669e65a (patch) | |
tree | 28d9b1826b8819c8e68e67558eacc6be7311ae30 /src/mainboard/amd/solo/irq_tables.c | |
parent | 234454d900a000e4dfd969dff6e5b95831ed2918 (diff) |
indent files to reduce the noise in further diffs.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1536 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd/solo/irq_tables.c')
-rw-r--r-- | src/mainboard/amd/solo/irq_tables.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mainboard/amd/solo/irq_tables.c b/src/mainboard/amd/solo/irq_tables.c index ad397b6ecd..b6ed888d10 100644 --- a/src/mainboard/amd/solo/irq_tables.c +++ b/src/mainboard/amd/solo/irq_tables.c @@ -20,35 +20,35 @@ const struct irq_routing_table intel_irq_routing_table = { PIRQ_SIGNATURE, /* u32 signature */ PIRQ_VERSION, /* u16 version */ - 32+16*IRQ_SLOT_COUNT, /* there can be total IRQ_SLOT_COUNT - * devices on the bus */ + 32 + 16 * IRQ_SLOT_COUNT, /* there can be total IRQ_SLOT_COUNT + * devices on the bus */ IRQ_ROUTER_BUS, /* Where the interrupt router lies (bus) */ IRQ_ROUTER_DEVFN, /* Where the interrupt router lies (dev) */ IRQS_EXCLUSIVE, /* IRQs devoted exclusively to PCI usage */ IRQ_ROUTER_VENDOR, /* Vendor */ IRQ_ROUTER_DEVICE, /* Device */ 0x00, /* Crap (miniport) */ - { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* u8 rfu[11] */ + {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, /* u8 rfu[11] */ 0x00, /* u8 checksum , mod 256 checksum must give * zero, will be corrected later */ { - /* slot(0=onboard), devfn, irqlinks (line id, 0=not routed) */ + /* slot(0=onboard), devfn, irqlinks (line id, 0=not routed) */ - /* PCI SLOT 1-4 */ - IRQ_SLOT (1, 3,4,0, 1,2,3,4 ), - IRQ_SLOT (2, 3,5,0, 2,3,4,1 ), - IRQ_SLOT (3, 3,6,0, 3,4,1,2 ), - IRQ_SLOT (4, 3,7,0, 4,1,2,3 ), - - /* Builtin Devices */ - IRQ_SLOT (0, 3,0,0, 4,4,4,4 ), /* USB */ - IRQ_SLOT (0, 1,5,1, 1,2,3,4 ), /* IDE */ - IRQ_SLOT (0, 1,2,0, 1,2,3,4 ), /* AGP Bridge */ + /* PCI SLOT 1-4 */ + IRQ_SLOT(1, 3, 4, 0, 1, 2, 3, 4), + IRQ_SLOT(2, 3, 5, 0, 2, 3, 4, 1), + IRQ_SLOT(3, 3, 6, 0, 3, 4, 1, 2), + IRQ_SLOT(4, 3, 7, 0, 4, 1, 2, 3), - /* Let Linux know about bus 1 */ - IRQ_SLOT (0, 1,5,0, 0,0,0,0 ), + /* Builtin Devices */ + IRQ_SLOT(0, 3, 0, 0, 4, 4, 4, 4), /* USB */ + IRQ_SLOT(0, 1, 5, 1, 1, 2, 3, 4), /* IDE */ + IRQ_SLOT(0, 1, 2, 0, 1, 2, 3, 4), /* AGP Bridge */ - } + /* Let Linux know about bus 1 */ + IRQ_SLOT(0, 1, 5, 0, 0, 0, 0, 0), + + } }; |