don't use __devexit_p to wrap meth_remove
The function meth_remove is defined using __exit, so don't use __devexit_p but __exit_p to wrap it. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Cc: David S. Miller <davem@davemloft.net> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Patrick McHardy <kaber@trash.net> Cc: Johannes Berg <johannes@sipsolutions.net> Cc: netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ce501caf16
commit
1ebb5a1aa9
1 changed files with 1 additions and 1 deletions
|
@ -828,7 +828,7 @@ static int __exit meth_remove(struct platform_device *pdev)
|
|||
|
||||
static struct platform_driver meth_driver = {
|
||||
.probe = meth_probe,
|
||||
.remove = __devexit_p(meth_remove),
|
||||
.remove = __exit_p(meth_remove),
|
||||
.driver = {
|
||||
.name = "meth",
|
||||
.owner = THIS_MODULE,
|
||||
|
|
Loading…
Reference in a new issue