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-sh-msiof.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-sh-msiof.c')
-rw-r--r-- | drivers/spi/spi-sh-msiof.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index e38554f89256..0f4834ae28cd 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c | |||
@@ -730,18 +730,7 @@ static struct platform_driver sh_msiof_spi_drv = { | |||
730 | .pm = &sh_msiof_spi_dev_pm_ops, | 730 | .pm = &sh_msiof_spi_dev_pm_ops, |
731 | }, | 731 | }, |
732 | }; | 732 | }; |
733 | 733 | module_platform_driver(sh_msiof_spi_drv); | |
734 | static int __init sh_msiof_spi_init(void) | ||
735 | { | ||
736 | return platform_driver_register(&sh_msiof_spi_drv); | ||
737 | } | ||
738 | module_init(sh_msiof_spi_init); | ||
739 | |||
740 | static void __exit sh_msiof_spi_exit(void) | ||
741 | { | ||
742 | platform_driver_unregister(&sh_msiof_spi_drv); | ||
743 | } | ||
744 | module_exit(sh_msiof_spi_exit); | ||
745 | 734 | ||
746 | MODULE_DESCRIPTION("SuperH MSIOF SPI Master Interface Driver"); | 735 | MODULE_DESCRIPTION("SuperH MSIOF SPI Master Interface Driver"); |
747 | MODULE_AUTHOR("Magnus Damm"); | 736 | MODULE_AUTHOR("Magnus Damm"); |