diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-12-07 11:57:14 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-12-07 12:06:43 -0500 |
commit | fd4a319bc933ae93e68935b21924a9ca4ba2d060 (patch) | |
tree | 6c813c841e056164fe22bd91a4cd2295028d497d /drivers/spi/spi-sh-hspi.c | |
parent | 7730cba2a50332c194f50a58b86359ea39a82bd1 (diff) |
spi: Remove HOTPLUG section attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev*
markings will be going away.
Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.
Bill Pemberton has done most of the legwork on this series. I've used
his script to purge the attributes from the drivers/gpio tree.
Reported-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/spi-sh-hspi.c')
-rw-r--r-- | drivers/spi/spi-sh-hspi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spi-sh-hspi.c b/drivers/spi/spi-sh-hspi.c index 47c4beee8a0e..32f7b55fce09 100644 --- a/drivers/spi/spi-sh-hspi.c +++ b/drivers/spi/spi-sh-hspi.c | |||
@@ -268,7 +268,7 @@ static void hspi_cleanup(struct spi_device *spi) | |||
268 | dev_dbg(dev, "%s cleanup\n", spi->modalias); | 268 | dev_dbg(dev, "%s cleanup\n", spi->modalias); |
269 | } | 269 | } |
270 | 270 | ||
271 | static int __devinit hspi_probe(struct platform_device *pdev) | 271 | static int hspi_probe(struct platform_device *pdev) |
272 | { | 272 | { |
273 | struct resource *res; | 273 | struct resource *res; |
274 | struct spi_master *master; | 274 | struct spi_master *master; |
@@ -339,7 +339,7 @@ static int __devinit hspi_probe(struct platform_device *pdev) | |||
339 | return ret; | 339 | return ret; |
340 | } | 340 | } |
341 | 341 | ||
342 | static int __devexit hspi_remove(struct platform_device *pdev) | 342 | static int hspi_remove(struct platform_device *pdev) |
343 | { | 343 | { |
344 | struct hspi_priv *hspi = dev_get_drvdata(&pdev->dev); | 344 | struct hspi_priv *hspi = dev_get_drvdata(&pdev->dev); |
345 | 345 | ||
@@ -353,7 +353,7 @@ static int __devexit hspi_remove(struct platform_device *pdev) | |||
353 | 353 | ||
354 | static struct platform_driver hspi_driver = { | 354 | static struct platform_driver hspi_driver = { |
355 | .probe = hspi_probe, | 355 | .probe = hspi_probe, |
356 | .remove = __devexit_p(hspi_remove), | 356 | .remove = hspi_remove, |
357 | .driver = { | 357 | .driver = { |
358 | .name = "sh-hspi", | 358 | .name = "sh-hspi", |
359 | .owner = THIS_MODULE, | 359 | .owner = THIS_MODULE, |