diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2011-10-05 13:29:49 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-10-24 18:35:47 -0400 |
commit | 940ab88962bc1aff3273a8356d64577a6e386736 (patch) | |
tree | 3d96d0cb30fd3c6e1b17b2a2d264f4d44258a3bb /drivers/spi/spi-mpc52xx.c | |
parent | 38ada214fad79ff5ebbed58932c5f0c9969d9c91 (diff) |
drivercore: Add helper macro for platform_driver boilerplate
For simple modules that contain a single platform_driver without any
additional setup code then ends up being a block of duplicated
boilerplate. This patch adds a new macro, module_platform_driver(),
which replaces the module_init()/module_exit() registrations with
template functions.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Reviewed-by: Magnus Damm <magnus.damm@gmail.com>
Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/spi/spi-mpc52xx.c')
-rw-r--r-- | drivers/spi/spi-mpc52xx.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/spi/spi-mpc52xx.c b/drivers/spi/spi-mpc52xx.c index 015a974bed72..57633d963456 100644 --- a/drivers/spi/spi-mpc52xx.c +++ b/drivers/spi/spi-mpc52xx.c | |||
@@ -564,16 +564,4 @@ static struct platform_driver mpc52xx_spi_of_driver = { | |||
564 | .probe = mpc52xx_spi_probe, | 564 | .probe = mpc52xx_spi_probe, |
565 | .remove = __devexit_p(mpc52xx_spi_remove), | 565 | .remove = __devexit_p(mpc52xx_spi_remove), |
566 | }; | 566 | }; |
567 | 567 | module_platform_driver(mpc52xx_spi_of_driver); | |
568 | static int __init mpc52xx_spi_init(void) | ||
569 | { | ||
570 | return platform_driver_register(&mpc52xx_spi_of_driver); | ||
571 | } | ||
572 | module_init(mpc52xx_spi_init); | ||
573 | |||
574 | static void __exit mpc52xx_spi_exit(void) | ||
575 | { | ||
576 | platform_driver_unregister(&mpc52xx_spi_of_driver); | ||
577 | } | ||
578 | module_exit(mpc52xx_spi_exit); | ||
579 | |||