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

Commit e2619cf7 authored by Bill Pemberton's avatar Bill Pemberton Committed by Dmitry Torokhov
Browse files

Input: 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>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 5298cc4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -107,7 +107,7 @@ static int emu_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
	return error;
	return error;
}
}


static void __devexit emu_remove(struct pci_dev *pdev)
static void emu_remove(struct pci_dev *pdev)
{
{
	struct emu *emu = pci_get_drvdata(pdev);
	struct emu *emu = pci_get_drvdata(pdev);


+1 −1
Original line number Original line Diff line number Diff line
@@ -129,7 +129,7 @@ static int fm801_gp_probe(struct pci_dev *pci, const struct pci_device_id *id)
	return error;
	return error;
}
}


static void __devexit fm801_gp_remove(struct pci_dev *pci)
static void fm801_gp_remove(struct pci_dev *pci)
{
{
	struct fm801_gp *gp = pci_get_drvdata(pci);
	struct fm801_gp *gp = pci_get_drvdata(pci);


+1 −1
Original line number Original line Diff line number Diff line
@@ -341,7 +341,7 @@ static int as5011_probe(struct i2c_client *client,
	return error;
	return error;
}
}


static int __devexit as5011_remove(struct i2c_client *client)
static int as5011_remove(struct i2c_client *client)
{
{
	struct as5011_device *as5011 = i2c_get_clientdata(client);
	struct as5011_device *as5011 = i2c_get_clientdata(client);


+1 −1
Original line number Original line Diff line number Diff line
@@ -157,7 +157,7 @@ static int probe_maple_controller(struct device *dev)
	return error;
	return error;
}
}


static int __devexit remove_maple_controller(struct device *dev)
static int remove_maple_controller(struct device *dev)
{
{
	struct maple_device *mdev = to_maple_dev(dev);
	struct maple_device *mdev = to_maple_dev(dev);
	struct dc_pad *pad = maple_get_drvdata(mdev);
	struct dc_pad *pad = maple_get_drvdata(mdev);
+1 −1
Original line number Original line Diff line number Diff line
@@ -182,7 +182,7 @@ static int adp5520_keys_probe(struct platform_device *pdev)
	return ret;
	return ret;
}
}


static int __devexit adp5520_keys_remove(struct platform_device *pdev)
static int adp5520_keys_remove(struct platform_device *pdev)
{
{
	struct adp5520_keys *dev = platform_get_drvdata(pdev);
	struct adp5520_keys *dev = platform_get_drvdata(pdev);


Loading