mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
Code cleanup, thanks Brian Murphy.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Thiemo Seufer <ths@networkno.de>
This commit is contained in:
parent
a5fc9c0bbe
commit
ec125c129e
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user