diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-05 19:35:57 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-05-05 20:14:10 -0700 |
commit | 7a9f4ff23ffc164b542cec07073efbe8f6c2a3f3 (patch) | |
tree | e58a20db18903f996a1176610133d17ec30e0434 /drivers/input/misc | |
parent | 18fc6f5096d4fed93421bedc2a26350520fbd6ba (diff) | |
download | talos-op-linux-7a9f4ff23ffc164b542cec07073efbe8f6c2a3f3.tar.gz talos-op-linux-7a9f4ff23ffc164b542cec07073efbe8f6c2a3f3.zip |
Input: mc13783-pwrbutton - remove redundant platform_set_drvdata()
Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/misc')
-rw-r--r-- | drivers/input/misc/mc13783-pwrbutton.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/misc/mc13783-pwrbutton.c b/drivers/input/misc/mc13783-pwrbutton.c index 0906ca593d5f..d0277a7b1579 100644 --- a/drivers/input/misc/mc13783-pwrbutton.c +++ b/drivers/input/misc/mc13783-pwrbutton.c @@ -250,7 +250,6 @@ static int mc13783_pwrbutton_remove(struct platform_device *pdev) input_unregister_device(priv->pwr); kfree(priv); - platform_set_drvdata(pdev, NULL); return 0; } |