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

Commit 9e5e9b7a authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

hwmon: 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: Hans de Goede <hdegoede@redhat.com>
Cc: Jean Delvare <khali@linux-fr.org>
Cc: Alistair John Strachan <alistair@devzero.co.uk>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Juerg Haefliger <juergh@gmail.com>
Cc: Andreas Herrmann <herrmann.der.user@googlemail.com>
Cc: Clemens Ladisch <clemens@ladisch.de>
Cc: Rudolf Marek <r.marek@assembler.cz>
Cc: Jim Cromie <jim.cromie@gmail.com>
Cc: "Mark M. Hoffman" <mhoffman@lightlink.com>
Cc: Roger Lucas <vt8231@hiddenengine.co.uk>
Acked-by: default avatarGuenter Roeck <linux@roeck-us.net>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 415ec69f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1545,7 +1545,7 @@ static struct platform_driver abituguru_driver = {
		.pm	= ABIT_UGURU_PM,
	},
	.probe		= abituguru_probe,
	.remove		= __devexit_p(abituguru_remove),
	.remove		= abituguru_remove,
};

static int __init abituguru_detect(void)
+1 −1
Original line number Diff line number Diff line
@@ -1171,7 +1171,7 @@ static struct platform_driver abituguru3_driver = {
		.pm	= ABIT_UGURU3_PM
	},
	.probe	= abituguru3_probe,
	.remove	= __devexit_p(abituguru3_remove),
	.remove	= abituguru3_remove,
};

static int __init abituguru3_dmi_detect(void)
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ static struct spi_driver ad7314_driver = {
		.owner = THIS_MODULE,
	},
	.probe = ad7314_probe,
	.remove = __devexit_p(ad7314_remove),
	.remove = ad7314_remove,
	.id_table = ad7314_id,
};

+1 −1
Original line number Diff line number Diff line
@@ -246,7 +246,7 @@ static struct i2c_driver ad7414_driver = {
		.name	= "ad7414",
	},
	.probe	= ad7414_probe,
	.remove	= __devexit_p(ad7414_remove),
	.remove	= ad7414_remove,
	.id_table = ad7414_id,
};

+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ static struct spi_driver adcxx_driver = {
	},
	.id_table = adcxx_ids,
	.probe	= adcxx_probe,
	.remove	= __devexit_p(adcxx_remove),
	.remove	= adcxx_remove,
};

module_spi_driver(adcxx_driver);
Loading