From: Jingoo Han Date: Wed, 11 Sep 2013 21:26:00 +0000 (-0700) Subject: drivers/pps/clients/pps-gpio.c: remove unnecessary platform_set_drvdata() X-Git-Tag: v3.12-rc1~52^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b67fb086f38c67c0b940d9c2661f14b44c39e67a;p=profile%2Fivi%2Fkernel-x86-ivi.git drivers/pps/clients/pps-gpio.c: remove unnecessary platform_set_drvdata() The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han Cc: Rodolfo Giometti Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/pps/clients/pps-gpio.c b/drivers/pps/clients/pps-gpio.c index eae0eda..9966124 100644 --- a/drivers/pps/clients/pps-gpio.c +++ b/drivers/pps/clients/pps-gpio.c @@ -184,7 +184,6 @@ static int pps_gpio_remove(struct platform_device *pdev) { struct pps_gpio_device_data *data = platform_get_drvdata(pdev); - platform_set_drvdata(pdev, NULL); pps_unregister_source(data->pps); dev_info(&pdev->dev, "removed IRQ %d as PPS source\n", data->irq); return 0;