aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-bfin5xx.c
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2013-02-05 08:27:35 -0500
committerGrant Likely <grant.likely@secretlab.ca>2013-02-05 09:43:16 -0500
commit2deff8d602e8c9a2cab4b070be829294e1211f2c (patch)
treea276d1162d24a8a407c40e88dd1e97a3dd035491 /drivers/spi/spi-bfin5xx.c
parent75bf3361104157b6dcdadc895329a67b1c4f9617 (diff)
spi: Remove erroneous __init, __exit and __exit_p() references in drivers
Some of the spi driver module remove hooks were annotated with __exit and referenced with __exit_p(). Presumably these were supposed to be __devinit, __devexit and __devexit_p() since __init/__exit for a probe/remove hook has never been correct. They also got missed during the big __devinit/__devexit purge since they didn't match the pattern. Remove then now to be rid of it. v2: purge __init also Reported-by: Arnd Bergmann <arnd@arndb.de> [Arnd set a patch cleaning up one, and then I found more] Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/spi-bfin5xx.c')
-rw-r--r--drivers/spi/spi-bfin5xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-bfin5xx.c b/drivers/spi/spi-bfin5xx.c
index 7d7c9918fffe..317f564c899c 100644
--- a/drivers/spi/spi-bfin5xx.c
+++ b/drivers/spi/spi-bfin5xx.c
@@ -1273,7 +1273,7 @@ static int bfin_spi_destroy_queue(struct bfin_spi_master_data *drv_data)
1273 return 0; 1273 return 0;
1274} 1274}
1275 1275
1276static int __init bfin_spi_probe(struct platform_device *pdev) 1276static int bfin_spi_probe(struct platform_device *pdev)
1277{ 1277{
1278 struct device *dev = &pdev->dev; 1278 struct device *dev = &pdev->dev;
1279 struct bfin5xx_spi_master *platform_info; 1279 struct bfin5xx_spi_master *platform_info;