diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-03-21 17:23:34 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-03-21 17:23:34 +0000 |
commit | 6be316a1dbb4790108340ae22cbb5c0c62ba4047 (patch) | |
tree | 2a0da1904d3dc11ec9f60a56cea6f8e4424d4178 /target/linux | |
parent | 9881eea43e05cd063266f7e3fa6c9c7d822c70f4 (diff) | |
download | master-187ad058-6be316a1dbb4790108340ae22cbb5c0c62ba4047.tar.gz master-187ad058-6be316a1dbb4790108340ae22cbb5c0c62ba4047.tar.bz2 master-187ad058-6be316a1dbb4790108340ae22cbb5c0c62ba4047.zip |
Fix warnings and add more detailed informations
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6628 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/adm5120-2.6/files/arch/mips/pci/pci-adm5120.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/target/linux/adm5120-2.6/files/arch/mips/pci/pci-adm5120.c b/target/linux/adm5120-2.6/files/arch/mips/pci/pci-adm5120.c index a8585747ee..bf46cc142a 100644 --- a/target/linux/adm5120-2.6/files/arch/mips/pci/pci-adm5120.c +++ b/target/linux/adm5120-2.6/files/arch/mips/pci/pci-adm5120.c @@ -24,17 +24,17 @@ extern struct pci_ops adm5120_pci_ops; struct resource pci_io_resource = { - "PCI IO space", - 0x11500000, - 0x115ffff0-1, - IORESOURCE_IO + .name = "PCI IO space", + .start = 0x11500000, + .end = 0x115ffff0-1, + .flags = IORESOURCE_IO }; struct resource pci_mem_resource = { - "PCI memory space", - 0x11400000, - 0x11500000, - IORESOURCE_MEM + .name = "PCI memory space", + .start = 0x11400000, + .end = 0x11500000, + .flags = IORESOURCE_MEM }; static struct pci_controller adm5120_controller = { @@ -73,10 +73,10 @@ static int __init adm5120_pci_setup(void) { if ((*(volatile u32 *)(KSEG1ADDR(ADM5120_CODE))) & ADM5120_CODE_PQFP) { - printk("System has no PCI BIOS\n"); + printk("System has no PCI BIOS (ADM5120 PQFP)\n"); return 1; } - printk("System has PCI BIOS\n"); + printk("System has PCI BIOS (ADM5120 BGA)\n"); /* Avoid ISA compat ranges. */ PCIBIOS_MIN_IO = 0x00000000; |