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

Commit 206210ce authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

gpio: remove use of __devexit



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

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Grant Likely <grant.likely@secretlab.ca>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Cc: Peter Tyser <ptyser@xes-inc.com>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b5ba78de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -181,7 +181,7 @@ exit_destroy:
	return ret;
}

static int __devexit gen_74x164_remove(struct spi_device *spi)
static int gen_74x164_remove(struct spi_device *spi)
{
	struct gen_74x164_chip *chip;
	int ret;
+1 −1
Original line number Diff line number Diff line
@@ -474,7 +474,7 @@ out_free:
 * ab8500_gpio_remove() - remove Ab8500-gpio driver
 * @pdev :	Platform device registered
 */
static int __devexit ab8500_gpio_remove(struct platform_device *pdev)
static int ab8500_gpio_remove(struct platform_device *pdev)
{
	struct ab8500_gpio *ab8500_gpio = platform_get_drvdata(pdev);
	int ret;
+1 −1
Original line number Diff line number Diff line
@@ -563,7 +563,7 @@ teardown:
	return err;
}

static __devexit int adnp_i2c_remove(struct i2c_client *client)
static int adnp_i2c_remove(struct i2c_client *client)
{
	struct adnp *adnp = i2c_get_clientdata(client);
	struct device_node *np = client->dev.of_node;
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ err:
	return ret;
}

static int __devexit adp5520_gpio_remove(struct platform_device *pdev)
static int adp5520_gpio_remove(struct platform_device *pdev)
{
	struct adp5520_gpio *dev;
	int ret;
+1 −1
Original line number Diff line number Diff line
@@ -438,7 +438,7 @@ err:
	return ret;
}

static int __devexit adp5588_gpio_remove(struct i2c_client *client)
static int adp5588_gpio_remove(struct i2c_client *client)
{
	struct adp5588_gpio_platform_data *pdata = client->dev.platform_data;
	struct adp5588_gpio *dev = i2c_get_clientdata(client);
Loading