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

Commit 486a5c28 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

misc: 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: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
Cc: Wolfram Sang <w.sang@pengutronix.de>
Cc: Eric Piel <eric.piel@tremplin-utc.net>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b328bfec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ static int ad_dpot_i2c_probe(struct i2c_client *client,
	return ad_dpot_probe(&client->dev, &bdata, id->driver_data, id->name);
}

static int __devexit ad_dpot_i2c_remove(struct i2c_client *client)
static int ad_dpot_i2c_remove(struct i2c_client *client)
{
	return ad_dpot_remove(&client->dev);
}
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ static int ad_dpot_spi_probe(struct spi_device *spi)
			     spi_get_device_id(spi)->name);
}

static int __devexit ad_dpot_spi_remove(struct spi_device *spi)
static int ad_dpot_spi_remove(struct spi_device *spi)
{
	return ad_dpot_remove(&spi->dev);
}
+1 −1
Original line number Diff line number Diff line
@@ -254,7 +254,7 @@ static int apds9802als_probe(struct i2c_client *client,
	return res;
}

static int __devexit apds9802als_remove(struct i2c_client *client)
static int apds9802als_remove(struct i2c_client *client)
{
	struct als_data *data = i2c_get_clientdata(client);

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

static int __devexit apds990x_remove(struct i2c_client *client)
static int apds990x_remove(struct i2c_client *client)
{
	struct apds990x_chip *chip = i2c_get_clientdata(client);

+1 −1
Original line number Diff line number Diff line
@@ -137,7 +137,7 @@ static int __init ssc_probe(struct platform_device *pdev)
	return retval;
}

static int __devexit ssc_remove(struct platform_device *pdev)
static int ssc_remove(struct platform_device *pdev)
{
	struct ssc_device *ssc = platform_get_drvdata(pdev);

Loading