Skip to content

Commit

Permalink
extcon: remove use of __devexit
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Nov 26, 2012
1 parent d5185c4 commit 93ed032
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/extcon/extcon-adc-jack.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ static int __devinit adc_jack_probe(struct platform_device *pdev)
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);

Expand Down
2 changes: 1 addition & 1 deletion drivers/extcon/extcon-arizona.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ static int __devinit arizona_extcon_probe(struct platform_device *pdev)
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 *arizona = info->arizona;
Expand Down
2 changes: 1 addition & 1 deletion drivers/extcon/extcon-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ static int __devinit gpio_extcon_probe(struct platform_device *pdev)
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);

Expand Down
2 changes: 1 addition & 1 deletion drivers/extcon/extcon-max77693.c
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ static int __devinit max77693_muic_probe(struct platform_device *pdev)
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);
int i;
Expand Down
2 changes: 1 addition & 1 deletion drivers/extcon/extcon-max8997.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ static int __devinit max8997_muic_probe(struct platform_device *pdev)
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);
int i;
Expand Down

0 comments on commit 93ed032

Please sign in to comment.