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: Hans-Christian Egtvedt <[email protected]>
Cc: Mark Brown <[email protected]>
---
 drivers/input/touchscreen/atmel-wm97xx.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/input/touchscreen/atmel-wm97xx.c 
b/drivers/input/touchscreen/atmel-wm97xx.c
index 2c1e46b..268a35e 100644
--- a/drivers/input/touchscreen/atmel-wm97xx.c
+++ b/drivers/input/touchscreen/atmel-wm97xx.c
@@ -372,7 +372,6 @@ static int __init atmel_wm97xx_probe(struct platform_device 
*pdev)
 err_irq:
        free_irq(atmel_wm97xx->ac97c_irq, atmel_wm97xx);
 err:
-       platform_set_drvdata(pdev, NULL);
        kfree(atmel_wm97xx);
        return ret;
 }
@@ -386,7 +385,6 @@ static int __exit atmel_wm97xx_remove(struct 
platform_device *pdev)
        free_irq(atmel_wm97xx->ac97c_irq, atmel_wm97xx);
        del_timer_sync(&atmel_wm97xx->pen_timer);
        wm97xx_unregister_mach_ops(wm);
-       platform_set_drvdata(pdev, NULL);
        kfree(atmel_wm97xx);
 
        return 0;
-- 
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