diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2008-01-24 22:23:24 -0700 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-01-28 08:30:41 -0600 |
commit | ca956f0ea8baa6365b5e39d16373f430e12a030d (patch) | |
tree | b5fece898f5fe79d88457cc71fda492f85d4f9b9 /arch/powerpc/platforms/82xx/pq2fads.c | |
parent | b61ad6532b243dd82d658d6370abb6f481ddd25e (diff) |
[POWERPC] 82xx and embedded6xx: Use machine_*_initcall() hooks in platform code
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/82xx/pq2fads.c')
-rw-r--r-- | arch/powerpc/platforms/82xx/pq2fads.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/powerpc/platforms/82xx/pq2fads.c b/arch/powerpc/platforms/82xx/pq2fads.c index 1be500501806..68196e349994 100644 --- a/arch/powerpc/platforms/82xx/pq2fads.c +++ b/arch/powerpc/platforms/82xx/pq2fads.c @@ -176,14 +176,11 @@ static struct of_device_id __initdata of_bus_ids[] = { static int __init declare_of_platform_devices(void) { - if (!machine_is(pq2fads)) - return 0; - /* Publish the QE devices */ of_platform_bus_probe(NULL, of_bus_ids, NULL); return 0; } -device_initcall(declare_of_platform_devices); +machine_device_initcall(pq2fads, declare_of_platform_devices); define_machine(pq2fads) { |