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

Commit 4dde2d2f authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

char: remove use of __devexit_p



CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Mattia Dongili <malattia@linux.it>
Cc: platform-driver-x86@vger.kernel.org
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 486a5c28
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1491,7 +1491,7 @@ static struct platform_driver sonypi_driver = {
		.pm	= SONYPI_PM,
	},
	.probe		= sonypi_probe,
	.remove		= __devexit_p(sonypi_remove),
	.remove		= sonypi_remove,
	.shutdown	= sonypi_shutdown,
};

+1 −1
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ static struct platform_device *tb0219_platform_device;

static struct platform_driver tb0219_device_driver = {
	.probe		= tb0219_probe,
	.remove		= __devexit_p(tb0219_remove),
	.remove		= tb0219_remove,
	.driver		= {
		.name	= "TB0219",
		.owner	= THIS_MODULE,