diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-10-11 05:19:03 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-10-11 10:40:49 (GMT) |
commit | 84dd4676f5519b86aee3bfaf1b230be2cb43f69b (patch) | |
tree | 56bd4fa1d945ccd07b2118c72264e6d10ed4ba30 /arch/powerpc/platforms | |
parent | 8251b4c481bca72568e9c1042ea11189838e5f6d (diff) | |
download | linux-fsl-qoriq-84dd4676f5519b86aee3bfaf1b230be2cb43f69b.tar.xz |
[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/platforms')
-rw-r--r-- | arch/powerpc/platforms/pasemi/gpio_mdio.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pasemi/gpio_mdio.c b/arch/powerpc/platforms/pasemi/gpio_mdio.c index c91a335..dae9f65 100644 --- a/arch/powerpc/platforms/pasemi/gpio_mdio.c +++ b/arch/powerpc/platforms/pasemi/gpio_mdio.c @@ -320,10 +320,12 @@ static struct of_device_id gpio_mdio_match[] = static struct of_platform_driver gpio_mdio_driver = { - .name = "gpio-mdio-bitbang", .match_table = gpio_mdio_match, .probe = gpio_mdio_probe, .remove = gpio_mdio_remove, + .driver = { + .name = "gpio-mdio-bitbang", + }, }; int gpio_mdio_init(void) |