aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/40x/virtex.c
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@linux.vnet.ibm.com>2007-12-24 11:42:02 -0500
committerJosh Boyer <jwboyer@linux.vnet.ibm.com>2007-12-24 11:42:02 -0500
commit3f8c5c3b4d07fa24e7081a54798ddfab7360a102 (patch)
tree3bcd0754918c06ed8d532b09f1135a1b7316691c /arch/powerpc/platforms/40x/virtex.c
parent9e0fd5f06cbdb3bb47ce54bdbfa43257e6b2b789 (diff)
[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/40x/virtex.c')
-rw-r--r--arch/powerpc/platforms/40x/virtex.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/powerpc/platforms/40x/virtex.c b/arch/powerpc/platforms/40x/virtex.c
index 14bbc328170f..43fcc8e9f7d0 100644
--- a/arch/powerpc/platforms/40x/virtex.c
+++ b/arch/powerpc/platforms/40x/virtex.c
@@ -17,14 +17,11 @@
17 17
18static int __init virtex_device_probe(void) 18static int __init virtex_device_probe(void)
19{ 19{
20 if (!machine_is(virtex))
21 return 0;
22
23 of_platform_bus_probe(NULL, NULL, NULL); 20 of_platform_bus_probe(NULL, NULL, NULL);
24 21
25 return 0; 22 return 0;
26} 23}
27device_initcall(virtex_device_probe); 24machine_device_initcall(virtex, virtex_device_probe);
28 25
29static int __init virtex_probe(void) 26static int __init virtex_probe(void)
30{ 27{