aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl/pinctrl-mxs.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-05-05 23:42:13 -0400
committerLinus Walleij <linus.walleij@linaro.org>2013-06-16 05:56:48 -0400
commit59eb14dcc6260aacfa0afdf11fd0292a8bba94c1 (patch)
tree3618bf36d8ab527be6a5a89a8ddbb257d5b19f10 /drivers/pinctrl/pinctrl-mxs.c
parentc87feeeb1e0957b03bcb619791bdabf57d1b838c (diff)
pinctrl: mxs: remove unnecessary platform_set_drvdata()
The driver core clears the driver data to NULL after device_release or on probe failure, since commit 0998d0631001288a5974afc0b2a5f568bcdecb4d (device-core: Ensure drvdata = NULL when no driver is bound). Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Acked-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-mxs.c')
-rw-r--r--drivers/pinctrl/pinctrl-mxs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-mxs.c b/drivers/pinctrl/pinctrl-mxs.c
index b45c4eb35798..f5d56436ba7f 100644
--- a/drivers/pinctrl/pinctrl-mxs.c
+++ b/drivers/pinctrl/pinctrl-mxs.c
@@ -515,7 +515,6 @@ int mxs_pinctrl_probe(struct platform_device *pdev,
515 return 0; 515 return 0;
516 516
517err: 517err:
518 platform_set_drvdata(pdev, NULL);
519 iounmap(d->base); 518 iounmap(d->base);
520 return ret; 519 return ret;
521} 520}
@@ -525,7 +524,6 @@ int mxs_pinctrl_remove(struct platform_device *pdev)
525{ 524{
526 struct mxs_pinctrl_data *d = platform_get_drvdata(pdev); 525 struct mxs_pinctrl_data *d = platform_get_drvdata(pdev);
527 526
528 platform_set_drvdata(pdev, NULL);
529 pinctrl_unregister(d->pctl); 527 pinctrl_unregister(d->pctl);
530 iounmap(d->base); 528 iounmap(d->base);
531 529