提交 9cc04d76 编写于 作者: S Sachin Kamat 提交者: Dmitry Torokhov

Input: ep93xx_keypad - remove redundant platform_set_drvdata()

Commit 0998d063 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: NSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
上级 d0c082d1
...@@ -330,7 +330,6 @@ static int ep93xx_keypad_probe(struct platform_device *pdev) ...@@ -330,7 +330,6 @@ static int ep93xx_keypad_probe(struct platform_device *pdev)
failed_free_irq: failed_free_irq:
free_irq(keypad->irq, pdev); free_irq(keypad->irq, pdev);
platform_set_drvdata(pdev, NULL);
failed_free_dev: failed_free_dev:
input_free_device(input_dev); input_free_device(input_dev);
failed_put_clk: failed_put_clk:
...@@ -353,8 +352,6 @@ static int ep93xx_keypad_remove(struct platform_device *pdev) ...@@ -353,8 +352,6 @@ static int ep93xx_keypad_remove(struct platform_device *pdev)
free_irq(keypad->irq, pdev); free_irq(keypad->irq, pdev);
platform_set_drvdata(pdev, NULL);
if (keypad->enabled) if (keypad->enabled)
clk_disable(keypad->clk); clk_disable(keypad->clk);
clk_put(keypad->clk); clk_put(keypad->clk);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册