extcon: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: MyungJoo Ham <myungjoo.ham@samsung.com> Cc: Chanwoo Choi <cw00.choi@samsung.com> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d5185c4eb3
commit
93ed032780
|
@ -175,7 +175,7 @@ out:
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devexit adc_jack_remove(struct platform_device *pdev)
|
static int adc_jack_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct adc_jack_data *data = platform_get_drvdata(pdev);
|
struct adc_jack_data *data = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
|
|
|
@ -517,7 +517,7 @@ err:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devexit arizona_extcon_remove(struct platform_device *pdev)
|
static int arizona_extcon_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct arizona_extcon_info *info = platform_get_drvdata(pdev);
|
struct arizona_extcon_info *info = platform_get_drvdata(pdev);
|
||||||
struct arizona *arizona = info->arizona;
|
struct arizona *arizona = info->arizona;
|
||||||
|
|
|
@ -137,7 +137,7 @@ err:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devexit gpio_extcon_remove(struct platform_device *pdev)
|
static int gpio_extcon_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct gpio_extcon_data *extcon_data = platform_get_drvdata(pdev);
|
struct gpio_extcon_data *extcon_data = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
|
|
|
@ -774,7 +774,7 @@ err_kfree:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devexit max77693_muic_remove(struct platform_device *pdev)
|
static int max77693_muic_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct max77693_muic_info *info = platform_get_drvdata(pdev);
|
struct max77693_muic_info *info = platform_get_drvdata(pdev);
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -508,7 +508,7 @@ err_kfree:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devexit max8997_muic_remove(struct platform_device *pdev)
|
static int max8997_muic_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct max8997_muic_info *info = platform_get_drvdata(pdev);
|
struct max8997_muic_info *info = platform_get_drvdata(pdev);
|
||||||
int i;
|
int i;
|
||||||
|
|
Loading…
Reference in New Issue