summaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-s3c64xx.c
diff options
context:
space:
mode:
authorGrant Likely2013-02-05 14:27:35 +0100
committerGrant Likely2013-02-05 15:43:16 +0100
commit2deff8d602e8c9a2cab4b070be829294e1211f2c (patch)
treea276d1162d24a8a407c40e88dd1e97a3dd035491 /drivers/spi/spi-s3c64xx.c
parentspi/s3c64xx: fix checkpatch warnings and error (diff)
downloadkernel-qcow2-linux-2deff8d602e8c9a2cab4b070be829294e1211f2c.tar.gz
kernel-qcow2-linux-2deff8d602e8c9a2cab4b070be829294e1211f2c.tar.xz
kernel-qcow2-linux-2deff8d602e8c9a2cab4b070be829294e1211f2c.zip
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-s3c64xx.c')
-rw-r--r--drivers/spi/spi-s3c64xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c
index d8928d0592df..8f492ed317cc 100644
--- a/drivers/spi/spi-s3c64xx.c
+++ b/drivers/spi/spi-s3c64xx.c
@@ -1191,7 +1191,7 @@ static inline struct s3c64xx_spi_port_config *s3c64xx_spi_get_port_config(
platform_get_device_id(pdev)->driver_data;
}
-static int __init s3c64xx_spi_probe(struct platform_device *pdev)
+static int s3c64xx_spi_probe(struct platform_device *pdev)
{
struct resource *mem_res;
struct s3c64xx_spi_driver_data *sdd;