diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-10-11 01:19:03 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-10-11 06:40:49 -0400 |
commit | 84dd4676f5519b86aee3bfaf1b230be2cb43f69b (patch) | |
tree | 56bd4fa1d945ccd07b2118c72264e6d10ed4ba30 /arch/powerpc/sysdev/axonram.c | |
parent | 8251b4c481bca72568e9c1042ea11189838e5f6d (diff) |
[POWERPC] Move of_platform_driver initialisations: arch/powerpc
We no longer initialise the name and owner fields of the
of_platform_driver, but use the fields of the embedded device_driver's
name field instead.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/sysdev/axonram.c')
-rw-r--r-- | arch/powerpc/sysdev/axonram.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/powerpc/sysdev/axonram.c b/arch/powerpc/sysdev/axonram.c index ab037a3a40db..4d3ba63bba79 100644 --- a/arch/powerpc/sysdev/axonram.c +++ b/arch/powerpc/sysdev/axonram.c | |||
@@ -324,11 +324,13 @@ static struct of_device_id axon_ram_device_id[] = { | |||
324 | }; | 324 | }; |
325 | 325 | ||
326 | static struct of_platform_driver axon_ram_driver = { | 326 | static struct of_platform_driver axon_ram_driver = { |
327 | .owner = THIS_MODULE, | ||
328 | .name = AXON_RAM_MODULE_NAME, | ||
329 | .match_table = axon_ram_device_id, | 327 | .match_table = axon_ram_device_id, |
330 | .probe = axon_ram_probe, | 328 | .probe = axon_ram_probe, |
331 | .remove = axon_ram_remove | 329 | .remove = axon_ram_remove, |
330 | .driver = { | ||
331 | .owner = THIS_MODULE, | ||
332 | .name = AXON_RAM_MODULE_NAME, | ||
333 | }, | ||
332 | }; | 334 | }; |
333 | 335 | ||
334 | /** | 336 | /** |