Skip to content

Commit

Permalink
[POWERPC] Move of_platform_driver initialisations: arch/powerpc
Browse files Browse the repository at this point in the history
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 <[email protected]>
Acked-by: Olof Johansson <[email protected]>
Signed-off-by: Paul Mackerras <[email protected]>
  • Loading branch information
sfrothwell authored and paulusmack committed Oct 11, 2007
1 parent 8251b4c commit 84dd467
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion arch/powerpc/platforms/pasemi/gpio_mdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 5 additions & 3 deletions arch/powerpc/sysdev/axonram.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
};

/**
Expand Down
6 changes: 4 additions & 2 deletions arch/powerpc/sysdev/pmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,12 @@ static int pmi_of_remove(struct of_device *dev)
}

static struct of_platform_driver pmi_of_platform_driver = {
.name = "pmi",
.match_table = pmi_match,
.probe = pmi_of_probe,
.remove = pmi_of_remove
.remove = pmi_of_remove,
.driver = {
.name = "pmi",
},
};

static int __init pmi_module_init(void)
Expand Down

0 comments on commit 84dd467

Please sign in to comment.