]> err.no Git - linux-2.6/blobdiff - arch/powerpc/platforms/44x/taishan.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
[linux-2.6] / arch / powerpc / platforms / 44x / taishan.c
index e3b7c7023336c4370986ddb8d0c095f0a0010aa1..49c78b2098b428579ad09f9e98a4f572eadd516c 100644 (file)
 #include <asm/time.h>
 #include <asm/uic.h>
 #include <asm/pci-bridge.h>
+#include <asm/ppc4xx.h>
 
-#include "44x.h"
-
-static struct of_device_id taishan_of_bus[] = {
+static __initdata struct of_device_id taishan_of_bus[] = {
        { .compatible = "ibm,plb4", },
        { .compatible = "ibm,opb", },
        { .compatible = "ibm,ebc", },
@@ -41,14 +40,11 @@ static struct of_device_id taishan_of_bus[] = {
 
 static int __init taishan_device_probe(void)
 {
-       if (!machine_is(taishan))
-               return 0;
-
        of_platform_bus_probe(NULL, taishan_of_bus, NULL);
 
        return 0;
 }
-device_initcall(taishan_device_probe);
+machine_device_initcall(taishan, taishan_device_probe);
 
 /*
  * Called very early, MMU is off, device-tree isn't unflattened
@@ -60,6 +56,8 @@ static int __init taishan_probe(void)
        if (!of_flat_dt_is_compatible(root, "amcc,taishan"))
                return 0;
 
+       ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC;
+
        return 1;
 }
 
@@ -69,6 +67,6 @@ define_machine(taishan) {
        .progress               = udbg_progress,
        .init_IRQ               = uic_init_tree,
        .get_irq                = uic_get_irq,
-       .restart                = ppc44x_reset_system,
+       .restart                = ppc4xx_reset_system,
        .calibrate_decr         = generic_calibrate_decr,
 };