aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/44x/bamboo.c
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@linux.vnet.ibm.com>2007-12-24 10:42:02 -0600
committerJosh Boyer <jwboyer@linux.vnet.ibm.com>2007-12-24 10:42:02 -0600
commit3f8c5c3b4d07fa24e7081a54798ddfab7360a102 (patch)
tree3bcd0754918c06ed8d532b09f1135a1b7316691c /arch/powerpc/platforms/44x/bamboo.c
parent[POWERPC] Remove unneeded variable declarations from mpc837x_mds (diff)
downloadlinux-dev-3f8c5c3b4d07fa24e7081a54798ddfab7360a102.tar.xz
linux-dev-3f8c5c3b4d07fa24e7081a54798ddfab7360a102.zip
[POWERPC] 4xx: Use machine_device_initcall for bus probe
Some machine_xx_initcall macros were recently added that check for the machine type before calling the function. This converts the 4xx platforms to use those for bus probing. Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Diffstat (limited to 'arch/powerpc/platforms/44x/bamboo.c')
-rw-r--r--arch/powerpc/platforms/44x/bamboo.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/powerpc/platforms/44x/bamboo.c b/arch/powerpc/platforms/44x/bamboo.c
index d27f758d9cb2..fb9a22a7e8d0 100644
--- a/arch/powerpc/platforms/44x/bamboo.c
+++ b/arch/powerpc/platforms/44x/bamboo.c
@@ -34,14 +34,11 @@ static __initdata struct of_device_id bamboo_of_bus[] = {
static int __init bamboo_device_probe(void)
{
- if (!machine_is(bamboo))
- return 0;
-
of_platform_bus_probe(NULL, bamboo_of_bus, NULL);
return 0;
}
-device_initcall(bamboo_device_probe);
+machine_device_initcall(bamboo, bamboo_device_probe);
static int __init bamboo_probe(void)
{