diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-03-02 04:24:47 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-03 01:33:49 +0300 |
commit | be12502e2e64854dbe0a2ddff6d26ec1143d6890 (patch) | |
tree | 147e0110de4d5228f09def2d8c112f69fb62b87c /drivers/net/ethernet/sgi | |
parent | 7db92362d2fee5887f6b0c41653b8c9f8f5d6020 (diff) | |
download | linux-be12502e2e64854dbe0a2ddff6d26ec1143d6890.tar.xz |
drivers: net: ethernet: 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: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sgi')
-rw-r--r-- | drivers/net/ethernet/sgi/meth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/sgi/meth.c b/drivers/net/ethernet/sgi/meth.c index 69d2d30e5ef1..ea55abd62ec7 100644 --- a/drivers/net/ethernet/sgi/meth.c +++ b/drivers/net/ethernet/sgi/meth.c @@ -854,7 +854,7 @@ static int meth_probe(struct platform_device *pdev) return 0; } -static int __exit meth_remove(struct platform_device *pdev) +static int meth_remove(struct platform_device *pdev) { struct net_device *dev = platform_get_drvdata(pdev); @@ -866,7 +866,7 @@ static int __exit meth_remove(struct platform_device *pdev) static struct platform_driver meth_driver = { .probe = meth_probe, - .remove = __exit_p(meth_remove), + .remove = meth_remove, .driver = { .name = "meth", } |