Commit ec125c12 authored by Thiemo Seufer's avatar Thiemo Seufer Committed by Ralf Baechle
Browse files

Code cleanup, thanks Brian Murphy.

parent a5fc9c0b
Loading
Loading
Loading
Loading
+24 −26
Original line number Diff line number Diff line
@@ -7,10 +7,8 @@
 */
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/types.h>
#include <linux/delay.h>
#include <asm/bootinfo.h>

extern struct pci_ops nile4_pci_ops;
@@ -18,14 +16,14 @@ extern struct pci_ops gt64120_pci_ops;
static struct resource lasat_pci_mem_resource = {
	.name	= "LASAT PCI MEM",
	.start	= 0x18000000,
	.end	= 0x19FFFFFF,
	.end	= 0x19ffffff,
	.flags	= IORESOURCE_MEM,
};

static struct resource lasat_pci_io_resource = {
	.name	= "LASAT PCI IO",
	.start	= 0x1a000000,
	.end	= 0x1bFFFFFF,
	.end	= 0x1bffffff,
	.flags	= IORESOURCE_IO,
};

@@ -70,11 +68,11 @@ int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{
	switch (slot) {
	case 1:
            return LASATINT_PCIA;   /* Expansion Module 0 */
		return LASATINT_PCIA;
	case 2:
            return LASATINT_PCIB;   /* Expansion Module 1 */
		return LASATINT_PCIB;
	case 3:
            return LASATINT_PCIC;   /* Expansion Module 2 */
		return LASATINT_PCIC;
	case 4:
		return LASATINT_ETH1;   /* Ethernet 1 (LAN 2) */
	case 5: