1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 15:02:24 +03:00

Fix warnings

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6899 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-04-08 20:02:27 +00:00
parent 147d8ef4cc
commit b774eb69b9

View File

@ -21,7 +21,6 @@
#include <linux/kernel.h>
#include <linux/init.h>
//#include <asm/pci_channel.h>
#include <bcmpci.h>
static struct resource bcm_pci_io_resource = {
@ -46,9 +45,18 @@ struct pci_controller bcm96348_controller = {
.mem_resource = &bcm_pci_mem_resource,
};
static void bcm96348_pci_init(void)
static __init int bcm96348_pci_init(void)
{
/* Avoid ISA compat ranges. */
PCIBIOS_MIN_IO = 0x00000000;
PCIBIOS_MIN_MEM = 0x00000000;
/* Set I/O resource limits. */
ioport_resource.end = 0x1fffffff;
iomem_resource.end = 0xffffffff;
register_pci_controller(&bcm96348_controller);
return 0;
}
arch_initcall(bcm96348_pci_init);
subsys_initcall(bcm96348_pci_init);