diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-10-11 15:19:03 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-10-11 20:40:49 +1000 |
commit | 84dd4676f5519b86aee3bfaf1b230be2cb43f69b (patch) | |
tree | 56bd4fa1d945ccd07b2118c72264e6d10ed4ba30 /arch/powerpc/sysdev/axonram.c | |
parent | 8251b4c481bca72568e9c1042ea11189838e5f6d (diff) | |
download | linux-84dd4676f5519b86aee3bfaf1b230be2cb43f69b.tar.gz linux-84dd4676f5519b86aee3bfaf1b230be2cb43f69b.tar.bz2 linux-84dd4676f5519b86aee3bfaf1b230be2cb43f69b.zip |
[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[] = { }; static struct of_platform_driver axon_ram_driver = { - .owner = THIS_MODULE, - .name = AXON_RAM_MODULE_NAME, .match_table = axon_ram_device_id, .probe = axon_ram_probe, - .remove = axon_ram_remove + .remove = axon_ram_remove, + .driver = { + .owner = THIS_MODULE, + .name = AXON_RAM_MODULE_NAME, + }, }; /** |