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

Commit 4740f73f authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

mfd: 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: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Cc: Peter Tyser <ptyser@xes-inc.com>
Cc: Daniel Walker <dwalker@fifo99.com>
Cc: Bryan Huntsman <bryanh@codeaurora.org>
Acked-by: default avatarDavid Brown <davidb@codeaurora.org>
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 a73e5df1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -554,7 +554,7 @@ static int pm800_probe(struct i2c_client *client,
	return ret;
}

static int __devexit pm800_remove(struct i2c_client *client)
static int pm800_remove(struct i2c_client *client)
{
	struct pm80x_chip *chip = i2c_get_clientdata(client);

+1 −1
Original line number Diff line number Diff line
@@ -262,7 +262,7 @@ static int pm805_probe(struct i2c_client *client,
	return ret;
}

static int __devexit pm805_remove(struct i2c_client *client)
static int pm805_remove(struct i2c_client *client)
{
	struct pm80x_chip *chip = i2c_get_clientdata(client);

+2 −2
Original line number Diff line number Diff line
@@ -1077,7 +1077,7 @@ static int pm860x_device_init(struct pm860x_chip *chip,
	return 0;
}

static void __devexit pm860x_device_exit(struct pm860x_chip *chip)
static void pm860x_device_exit(struct pm860x_chip *chip)
{
	device_irq_exit(chip);
	mfd_remove_devices(chip->dev);
@@ -1200,7 +1200,7 @@ static int pm860x_probe(struct i2c_client *client,
	return ret;
}

static int __devexit pm860x_remove(struct i2c_client *client)
static int pm860x_remove(struct i2c_client *client)
{
	struct pm860x_chip *chip = i2c_get_clientdata(client);

+1 −1
Original line number Diff line number Diff line
@@ -961,7 +961,7 @@ static int ab3100_probe(struct i2c_client *client,
	return err;
}

static int __devexit ab3100_remove(struct i2c_client *client)
static int ab3100_remove(struct i2c_client *client)
{
	struct ab3100 *ab3100 = i2c_get_clientdata(client);

+1 −1
Original line number Diff line number Diff line
@@ -1473,7 +1473,7 @@ static int ab8500_probe(struct platform_device *pdev)
	return ret;
}

static int __devexit ab8500_remove(struct platform_device *pdev)
static int ab8500_remove(struct platform_device *pdev)
{
	struct ab8500 *ab8500 = platform_get_drvdata(pdev);

Loading