summaryrefslogtreecommitdiff
path: root/drivers/extcon
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@nvidia.com>2013-06-16 19:31:14 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2013-09-14 13:15:04 -0700
commit786d24428bc997a948dfb4ce2985167e9627da43 (patch)
tree77a744b02156dd30f099a988c5170ecd00752e5f /drivers/extcon
parent8e0fc35e02ff801026b40387ac7f53c8d252b1fc (diff)
fixup: remove __dev*
Diffstat (limited to 'drivers/extcon')
-rw-r--r--drivers/extcon/extcon-palmas.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/extcon/extcon-palmas.c b/drivers/extcon/extcon-palmas.c
index 901d4026f2be..089f064eadd1 100644
--- a/drivers/extcon/extcon-palmas.c
+++ b/drivers/extcon/extcon-palmas.c
@@ -127,7 +127,7 @@ static irqreturn_t palmas_extcon_irq(int irq, void *data)
return IRQ_HANDLED;
}
-static int __devinit palmas_extcon_probe(struct platform_device *pdev)
+static int palmas_extcon_probe(struct platform_device *pdev)
{
struct palmas_platform_data *pdata;
struct palmas_extcon_platform_data *epdata = NULL;
@@ -233,7 +233,7 @@ out:
return ret;
}
-static int __devexit palmas_extcon_remove(struct platform_device *pdev)
+static int palmas_extcon_remove(struct platform_device *pdev)
{
struct palmas_extcon *palma_econ = dev_get_drvdata(&pdev->dev);
@@ -280,7 +280,7 @@ static const struct dev_pm_ops palmas_pm_ops = {
static struct platform_driver palmas_extcon_driver = {
.probe = palmas_extcon_probe,
- .remove = __devexit_p(palmas_extcon_remove),
+ .remove = palmas_extcon_remove,
.driver = {
.name = "palmas-extcon",
.owner = THIS_MODULE,