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-dw-mmio.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-dw-mmio.c')
-rw-r--r-- | drivers/spi/spi-dw-mmio.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/drivers/spi/spi-dw-mmio.c b/drivers/spi/spi-dw-mmio.c index 34eb66501dbf..fac399c3022c 100644 --- a/drivers/spi/spi-dw-mmio.c +++ b/drivers/spi/spi-dw-mmio.c | |||
@@ -127,24 +127,14 @@ static int __devexit dw_spi_mmio_remove(struct platform_device *pdev) | |||
127 | } | 127 | } |
128 | 128 | ||
129 | static struct platform_driver dw_spi_mmio_driver = { | 129 | static struct platform_driver dw_spi_mmio_driver = { |
130 | .probe = dw_spi_mmio_probe, | ||
130 | .remove = __devexit_p(dw_spi_mmio_remove), | 131 | .remove = __devexit_p(dw_spi_mmio_remove), |
131 | .driver = { | 132 | .driver = { |
132 | .name = DRIVER_NAME, | 133 | .name = DRIVER_NAME, |
133 | .owner = THIS_MODULE, | 134 | .owner = THIS_MODULE, |
134 | }, | 135 | }, |
135 | }; | 136 | }; |
136 | 137 | module_platform_driver(dw_spi_mmio_driver); | |
137 | static int __init dw_spi_mmio_init(void) | ||
138 | { | ||
139 | return platform_driver_probe(&dw_spi_mmio_driver, dw_spi_mmio_probe); | ||
140 | } | ||
141 | module_init(dw_spi_mmio_init); | ||
142 | |||
143 | static void __exit dw_spi_mmio_exit(void) | ||
144 | { | ||
145 | platform_driver_unregister(&dw_spi_mmio_driver); | ||
146 | } | ||
147 | module_exit(dw_spi_mmio_exit); | ||
148 | 138 | ||
149 | MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>"); | 139 | MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>"); |
150 | MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core"); | 140 | MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core"); |