Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9e39c89 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Paul Mundt
Browse files

serial: sh-sci: don't use __devexit_p to wrap sci_remove



The function sci_remove is defined without any section modifier, so
don't use __devexit_p to wrap it.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Magnus Damm <damm@opensource.se>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent b9e05c64
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1370,7 +1370,7 @@ static struct dev_pm_ops sci_dev_pm_ops = {

static struct platform_driver sci_driver = {
	.probe		= sci_probe,
	.remove		= __devexit_p(sci_remove),
	.remove		= sci_remove,
	.driver		= {
		.name	= "sh-sci",
		.owner	= THIS_MODULE,