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-coldfire-qspi.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-coldfire-qspi.c')
-rw-r--r-- | drivers/spi/spi-coldfire-qspi.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/drivers/spi/spi-coldfire-qspi.c b/drivers/spi/spi-coldfire-qspi.c index 7397c4d57007..6eee64a5d240 100644 --- a/drivers/spi/spi-coldfire-qspi.c +++ b/drivers/spi/spi-coldfire-qspi.c | |||
@@ -621,20 +621,10 @@ static struct platform_driver mcfqspi_driver = { | |||
621 | .driver.name = DRIVER_NAME, | 621 | .driver.name = DRIVER_NAME, |
622 | .driver.owner = THIS_MODULE, | 622 | .driver.owner = THIS_MODULE, |
623 | .driver.pm = MCFQSPI_DEV_PM_OPS, | 623 | .driver.pm = MCFQSPI_DEV_PM_OPS, |
624 | .probe = mcfqspi_probe, | ||
624 | .remove = __devexit_p(mcfqspi_remove), | 625 | .remove = __devexit_p(mcfqspi_remove), |
625 | }; | 626 | }; |
626 | 627 | module_platform_driver(mcfqspi_driver); | |
627 | static int __init mcfqspi_init(void) | ||
628 | { | ||
629 | return platform_driver_probe(&mcfqspi_driver, mcfqspi_probe); | ||
630 | } | ||
631 | module_init(mcfqspi_init); | ||
632 | |||
633 | static void __exit mcfqspi_exit(void) | ||
634 | { | ||
635 | platform_driver_unregister(&mcfqspi_driver); | ||
636 | } | ||
637 | module_exit(mcfqspi_exit); | ||
638 | 628 | ||
639 | MODULE_AUTHOR("Steven King <sfking@fdwdc.com>"); | 629 | MODULE_AUTHOR("Steven King <sfking@fdwdc.com>"); |
640 | MODULE_DESCRIPTION("Coldfire QSPI Controller Driver"); | 630 | MODULE_DESCRIPTION("Coldfire QSPI Controller Driver"); |