Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b67fb086 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds
Browse files

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: default avatarJingoo Han <jg1.han@samsung.com>
Cc: Rodolfo Giometti <giometti@enneenne.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 666dc7c9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;