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

Commit 2d6bed9c authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

drivers/misc: 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: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
Cc: Wolfram Sang <w.sang@pengutronix.de>
Cc: Eric Piel <eric.piel@tremplin-utc.net>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 989623c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -109,7 +109,7 @@ static struct i2c_driver ad_dpot_i2c_driver = {
		.owner	= THIS_MODULE,
		.owner	= THIS_MODULE,
	},
	},
	.probe		= ad_dpot_i2c_probe,
	.probe		= ad_dpot_i2c_probe,
	.remove		= __devexit_p(ad_dpot_i2c_remove),
	.remove		= ad_dpot_i2c_remove,
	.id_table	= ad_dpot_id,
	.id_table	= ad_dpot_id,
};
};


+1 −1
Original line number Original line Diff line number Diff line
@@ -131,7 +131,7 @@ static struct spi_driver ad_dpot_spi_driver = {
		.owner	= THIS_MODULE,
		.owner	= THIS_MODULE,
	},
	},
	.probe		= ad_dpot_spi_probe,
	.probe		= ad_dpot_spi_probe,
	.remove		= __devexit_p(ad_dpot_spi_remove),
	.remove		= ad_dpot_spi_remove,
	.id_table	= ad_dpot_spi_id,
	.id_table	= ad_dpot_spi_id,
};
};


+1 −1
Original line number Original line Diff line number Diff line
@@ -326,7 +326,7 @@ static struct i2c_driver apds9802als_driver = {
		.pm = APDS9802ALS_PM_OPS,
		.pm = APDS9802ALS_PM_OPS,
	},
	},
	.probe = apds9802als_probe,
	.probe = apds9802als_probe,
	.remove = __devexit_p(apds9802als_remove),
	.remove = apds9802als_remove,
	.suspend = apds9802als_suspend,
	.suspend = apds9802als_suspend,
	.resume = apds9802als_resume,
	.resume = apds9802als_resume,
	.id_table = apds9802als_id,
	.id_table = apds9802als_id,
+1 −1
Original line number Original line Diff line number Diff line
@@ -1275,7 +1275,7 @@ static struct i2c_driver apds990x_driver = {
		.pm	= &apds990x_pm_ops,
		.pm	= &apds990x_pm_ops,
	},
	},
	.probe	  = apds990x_probe,
	.probe	  = apds990x_probe,
	.remove	  = __devexit_p(apds990x_remove),
	.remove	  = apds990x_remove,
	.id_table = apds990x_id,
	.id_table = apds990x_id,
};
};


+1 −1
Original line number Original line Diff line number Diff line
@@ -152,7 +152,7 @@ static int __devexit ssc_remove(struct platform_device *pdev)
}
}


static struct platform_driver ssc_driver = {
static struct platform_driver ssc_driver = {
	.remove		= __devexit_p(ssc_remove),
	.remove		= ssc_remove,
	.driver		= {
	.driver		= {
		.name		= "ssc",
		.name		= "ssc",
		.owner		= THIS_MODULE,
		.owner		= THIS_MODULE,
Loading