diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-01-15 09:42:36 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-01-23 19:32:37 -0600 |
commit | 277982e2d8a240576359e44b3f98c490861fc1ad (patch) | |
tree | 2097d78258009bf30ae759b88ba306a318f0b655 /arch/powerpc/platforms/85xx/mpc85xx_mds.c | |
parent | c51a3fdc0a950dc65b4d552497e54cf60677f8a5 (diff) | |
download | kernel_samsung_aries-277982e2d8a240576359e44b3f98c490861fc1ad.zip kernel_samsung_aries-277982e2d8a240576359e44b3f98c490861fc1ad.tar.gz kernel_samsung_aries-277982e2d8a240576359e44b3f98c490861fc1ad.tar.bz2 |
[POWERPC] 85xx: convert boards to use machine_device_initcall
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/85xx/mpc85xx_mds.c')
-rw-r--r-- | arch/powerpc/platforms/85xx/mpc85xx_mds.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_mds.c b/arch/powerpc/platforms/85xx/mpc85xx_mds.c index e6c63a5..4fdf5ab 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_mds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_mds.c @@ -144,15 +144,12 @@ static struct of_device_id mpc85xx_ids[] = { static int __init mpc85xx_publish_devices(void) { - if (!machine_is(mpc85xx_mds)) - return 0; - /* Publish the QE devices */ - of_platform_bus_probe(NULL,mpc85xx_ids,NULL); + of_platform_bus_probe(NULL, mpc85xx_ids, NULL); return 0; } -device_initcall(mpc85xx_publish_devices); +machine_device_initcall(mpc85xx_mds, mpc85xx_publish_devices); static void __init mpc85xx_mds_pic_init(void) { |