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

Commit 8283c4ff authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

gpio: 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: Grant Likely <grant.likely@secretlab.ca>
Cc: Peter Tyser <ptyser@xes-inc.com>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1fc7ad5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -215,7 +215,7 @@ static struct spi_driver gen_74x164_driver = {
		.of_match_table	= of_match_ptr(gen_74x164_dt_ids),
	},
	.probe		= gen_74x164_probe,
	.remove		= __devexit_p(gen_74x164_remove),
	.remove		= gen_74x164_remove,
};
module_spi_driver(gen_74x164_driver);

+1 −1
Original line number Diff line number Diff line
@@ -499,7 +499,7 @@ static struct platform_driver ab8500_gpio_driver = {
		.owner = THIS_MODULE,
	},
	.probe = ab8500_gpio_probe,
	.remove = __devexit_p(ab8500_gpio_remove),
	.remove = ab8500_gpio_remove,
};

static int __init ab8500_gpio_init(void)
+1 −1
Original line number Diff line number Diff line
@@ -601,7 +601,7 @@ static struct i2c_driver adnp_i2c_driver = {
		.of_match_table = of_match_ptr(adnp_of_match),
	},
	.probe = adnp_i2c_probe,
	.remove = __devexit_p(adnp_i2c_remove),
	.remove = adnp_i2c_remove,
	.id_table = adnp_i2c_id,
};
module_i2c_driver(adnp_i2c_driver);
+1 −1
Original line number Diff line number Diff line
@@ -190,7 +190,7 @@ static struct platform_driver adp5520_gpio_driver = {
		.owner	= THIS_MODULE,
	},
	.probe		= adp5520_gpio_probe,
	.remove		= __devexit_p(adp5520_gpio_remove),
	.remove		= adp5520_gpio_remove,
};

module_platform_driver(adp5520_gpio_driver);
+1 −1
Original line number Diff line number Diff line
@@ -479,7 +479,7 @@ static struct i2c_driver adp5588_gpio_driver = {
		   .name = DRV_NAME,
		   },
	.probe = adp5588_gpio_probe,
	.remove = __devexit_p(adp5588_gpio_remove),
	.remove = adp5588_gpio_remove,
	.id_table = adp5588_gpio_id,
};

Loading