diff options
author | Uwe Kleine-König <[email protected]> | 2009-09-30 22:28:26 +0000 |
---|---|---|
committer | David S. Miller <[email protected]> | 2009-10-01 14:34:43 -0700 |
commit | fb74c2fcac05fced50cd11b8e8dcecede1d4d880 (patch) | |
tree | f22fa8554982cf501a0503b77bf230751e9cd136 | |
parent | 1ebb5a1aa9a1ede80a37684215971c6130ac91c8 (diff) |
don't use __devexit_p to wrap sgiseeq_remove
The function sgiseeq_remove is defined using __exit, so don't use
__devexit_p but __exit_p to wrap it.
Signed-off-by: Uwe Kleine-König <[email protected]>
Cc: David S. Miller <[email protected]>
Cc: Wang Chen <[email protected]>
Cc: Ralf Baechle <[email protected]>
Cc: Patrick McHardy <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | drivers/net/sgiseeq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sgiseeq.c b/drivers/net/sgiseeq.c index ecf3279fbef5..f4dfd1f679a9 100644 --- a/drivers/net/sgiseeq.c +++ b/drivers/net/sgiseeq.c @@ -826,7 +826,7 @@ static int __exit sgiseeq_remove(struct platform_device *pdev) static struct platform_driver sgiseeq_driver = { .probe = sgiseeq_probe, - .remove = __devexit_p(sgiseeq_remove), + .remove = __exit_p(sgiseeq_remove), .driver = { .name = "sgiseeq", .owner = THIS_MODULE, |