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 <[email protected]>
Cc: Kristoffer Ericson <[email protected]>
---
 drivers/input/touchscreen/jornada720_ts.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/input/touchscreen/jornada720_ts.c 
b/drivers/input/touchscreen/jornada720_ts.c
index 282d7c7..e463a79 100644
--- a/drivers/input/touchscreen/jornada720_ts.c
+++ b/drivers/input/touchscreen/jornada720_ts.c
@@ -145,7 +145,6 @@ static int jornada720_ts_probe(struct platform_device *pdev)
  fail2:
        free_irq(IRQ_GPIO9, pdev);
  fail1:
-       platform_set_drvdata(pdev, NULL);
        input_free_device(input_dev);
        kfree(jornada_ts);
        return error;
@@ -156,7 +155,6 @@ static int jornada720_ts_remove(struct platform_device 
*pdev)
        struct jornada_ts *jornada_ts = platform_get_drvdata(pdev);
 
        free_irq(IRQ_GPIO9, pdev);
-       platform_set_drvdata(pdev, NULL);
        input_unregister_device(jornada_ts->dev);
        kfree(jornada_ts);
 
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to