aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pps
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-11 17:26:00 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-09-11 18:59:34 -0400
commitb67fb086f38c67c0b940d9c2661f14b44c39e67a (patch)
treeb17daa20bfd89750b4fcca3ed69efd3f614f64b3 /drivers/pps
parent666dc7c90ab2531f7f0f13ef21afab8cd61478a9 (diff)
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 <jg1.han@samsung.com> Cc: Rodolfo Giometti <giometti@enneenne.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pps')
-rw-r--r--drivers/pps/clients/pps-gpio.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pps/clients/pps-gpio.c b/drivers/pps/clients/pps-gpio.c
index eae0eda9ff39..9966124ad988 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)
184{ 184{
185 struct pps_gpio_device_data *data = platform_get_drvdata(pdev); 185 struct pps_gpio_device_data *data = platform_get_drvdata(pdev);
186 186
187 platform_set_drvdata(pdev, NULL);
188 pps_unregister_source(data->pps); 187 pps_unregister_source(data->pps);
189 dev_info(&pdev->dev, "removed IRQ %d as PPS source\n", data->irq); 188 dev_info(&pdev->dev, "removed IRQ %d as PPS source\n", data->irq);
190 return 0; 189 return 0;