diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-03-02 02:38:38 +0100 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2017-03-16 00:27:46 +0100 |
commit | ba21222d00a450ce3bfced0e047f52470372634d (patch) | |
tree | dc3f4ee01ed5943b9fc245af6caaf5afbf35f10d /drivers/scsi/sgiwd93.c | |
parent | scsi: stex: Add S6 support (diff) | |
download | linux-ba21222d00a450ce3bfced0e047f52470372634d.tar.xz linux-ba21222d00a450ce3bfced0e047f52470372634d.zip |
scsi: remove incorrect __exit markups
Even if bus is not hot-pluggable, devices can be unbound from the driver
via sysfs, so we should not be using __exit annotations on remove()
methods. The only exception is drivers registered with
platform_driver_probe() which specifically disables sysfs bind/unbind
attributes.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/sgiwd93.c')
-rw-r--r-- | drivers/scsi/sgiwd93.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sgiwd93.c b/drivers/scsi/sgiwd93.c index 6d215e2fb46d..71b4b91d2215 100644 --- a/drivers/scsi/sgiwd93.c +++ b/drivers/scsi/sgiwd93.c @@ -297,7 +297,7 @@ out: return err; } -static int __exit sgiwd93_remove(struct platform_device *pdev) +static int sgiwd93_remove(struct platform_device *pdev) { struct Scsi_Host *host = platform_get_drvdata(pdev); struct ip22_hostdata *hdata = (struct ip22_hostdata *) host->hostdata; |