Rename mipsIRQ.S to int-handler to match the kernel naming convention, implement...
[openwrt.git] / target / linux / adm5120-2.6 / files / arch / mips / pci / ops-adm5120.c
index 80b8531..91dae89 100644 (file)
@@ -1,6 +1,8 @@
 /*
  *     Copyright (C) ADMtek Incorporated.
  *     Copyright (C) 2005 Jeroen Vreeken (pe1rxq@amsat.org)
+ *     Copyright (C) 2007 Gabor Juhos <juhosg@freemail.hu>
+ *     Copyright (C) 2007 OpenWrt.org
  */
 
 #include <linux/autoconf.h>
 #include <linux/kernel.h>
 #include <linux/init.h>
 
-volatile u32* pci_config_address_reg = (volatile u32*)KSEG1ADDR(0x115ffff0);
-volatile u32* pci_config_data_reg = (volatile u32*)KSEG1ADDR(0x115ffff8);
+#include <adm5120_defs.h>
+
+volatile u32* pci_config_address_reg = (volatile u32*)KSEG1ADDR(ADM5120_PCICFG_ADDR);
+volatile u32* pci_config_data_reg = (volatile u32*)KSEG1ADDR(ADM5120_PCICFG_DATA);
 
 #define PCI_ENABLE 0x80000000
-                          
+
 static int pci_config_read(struct pci_bus *bus, unsigned int devfn, int where,
                            int size, uint32_t *val)
 {
This page took 0.022299 seconds and 4 git commands to generate.