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

Commit 7e4b9d0b authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

backlight: 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: Richard Purdie <rpurdie@rpsys.net>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Acked-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1b9e450d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ static int adp5520_bl_probe(struct platform_device *pdev)
	return ret;
}

static int __devexit adp5520_bl_remove(struct platform_device *pdev)
static int adp5520_bl_remove(struct platform_device *pdev)
{
	struct backlight_device *bl = platform_get_drvdata(pdev);
	struct adp5520_bl *data = bl_get_data(bl);
+3 −3
Original line number Diff line number Diff line
@@ -295,7 +295,7 @@ static int adp8860_led_probe(struct i2c_client *client)
	return ret;
}

static int __devexit adp8860_led_remove(struct i2c_client *client)
static int adp8860_led_remove(struct i2c_client *client)
{
	struct adp8860_backlight_platform_data *pdata =
		client->dev.platform_data;
@@ -315,7 +315,7 @@ static int adp8860_led_probe(struct i2c_client *client)
	return 0;
}

static int __devexit adp8860_led_remove(struct i2c_client *client)
static int adp8860_led_remove(struct i2c_client *client)
{
	return 0;
}
@@ -755,7 +755,7 @@ static int adp8860_probe(struct i2c_client *client,
	return ret;
}

static int __devexit adp8860_remove(struct i2c_client *client)
static int adp8860_remove(struct i2c_client *client)
{
	struct adp8860_bl *data = i2c_get_clientdata(client);

+3 −3
Original line number Diff line number Diff line
@@ -320,7 +320,7 @@ static int adp8870_led_probe(struct i2c_client *client)
	return ret;
}

static int __devexit adp8870_led_remove(struct i2c_client *client)
static int adp8870_led_remove(struct i2c_client *client)
{
	struct adp8870_backlight_platform_data *pdata =
		client->dev.platform_data;
@@ -340,7 +340,7 @@ static int adp8870_led_probe(struct i2c_client *client)
	return 0;
}

static int __devexit adp8870_led_remove(struct i2c_client *client)
static int adp8870_led_remove(struct i2c_client *client)
{
	return 0;
}
@@ -929,7 +929,7 @@ static int adp8870_probe(struct i2c_client *client,
	return ret;
}

static int __devexit adp8870_remove(struct i2c_client *client)
static int adp8870_remove(struct i2c_client *client)
{
	struct adp8870_bl *data = i2c_get_clientdata(client);

+1 −1
Original line number Diff line number Diff line
@@ -548,7 +548,7 @@ static int ams369fg06_probe(struct spi_device *spi)
	return ret;
}

static int __devexit ams369fg06_remove(struct spi_device *spi)
static int ams369fg06_remove(struct spi_device *spi)
{
	struct ams369fg06 *lcd = dev_get_drvdata(&spi->dev);

+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ static int apple_bl_add(struct acpi_device *dev)
	return 0;
}

static int __devexit apple_bl_remove(struct acpi_device *dev, int type)
static int apple_bl_remove(struct acpi_device *dev, int type)
{
	backlight_device_unregister(apple_backlight_device);

Loading