diff options
Diffstat (limited to 'drivers/extcon/extcon-max77693.c')
-rw-r--r-- | drivers/extcon/extcon-max77693.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/extcon/extcon-max77693.c b/drivers/extcon/extcon-max77693.c index 8bf5e4835b4c..8c17b65eb74d 100644 --- a/drivers/extcon/extcon-max77693.c +++ b/drivers/extcon/extcon-max77693.c | |||
@@ -648,7 +648,7 @@ out: | |||
648 | return ret; | 648 | return ret; |
649 | } | 649 | } |
650 | 650 | ||
651 | static int __devinit max77693_muic_probe(struct platform_device *pdev) | 651 | static int max77693_muic_probe(struct platform_device *pdev) |
652 | { | 652 | { |
653 | struct max77693_dev *max77693 = dev_get_drvdata(pdev->dev.parent); | 653 | struct max77693_dev *max77693 = dev_get_drvdata(pdev->dev.parent); |
654 | struct max77693_platform_data *pdata = dev_get_platdata(max77693->dev); | 654 | struct max77693_platform_data *pdata = dev_get_platdata(max77693->dev); |
@@ -772,7 +772,7 @@ err_irq: | |||
772 | return ret; | 772 | return ret; |
773 | } | 773 | } |
774 | 774 | ||
775 | static int __devexit max77693_muic_remove(struct platform_device *pdev) | 775 | static int max77693_muic_remove(struct platform_device *pdev) |
776 | { | 776 | { |
777 | struct max77693_muic_info *info = platform_get_drvdata(pdev); | 777 | struct max77693_muic_info *info = platform_get_drvdata(pdev); |
778 | int i; | 778 | int i; |
@@ -791,7 +791,7 @@ static struct platform_driver max77693_muic_driver = { | |||
791 | .owner = THIS_MODULE, | 791 | .owner = THIS_MODULE, |
792 | }, | 792 | }, |
793 | .probe = max77693_muic_probe, | 793 | .probe = max77693_muic_probe, |
794 | .remove = __devexit_p(max77693_muic_remove), | 794 | .remove = max77693_muic_remove, |
795 | }; | 795 | }; |
796 | 796 | ||
797 | module_platform_driver(max77693_muic_driver); | 797 | module_platform_driver(max77693_muic_driver); |