From: Uwe Kleine-König Date: Sun, 19 Mar 2023 10:06:18 +0000 (+0100) Subject: of: unittest: Drop call to platform_set_drvdata(..., NULL) X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5cdade2d77dd41a2ed98967c3887f5d66a4d23c4;p=linux.git of: unittest: Drop call to platform_set_drvdata(..., NULL) The driver core already unsets driver data after .remove() completes. So there is no reason to do this explicitly in the driver itself. Signed-off-by: Uwe Kleine-König Link: https://lore.kernel.org/r/20230319100620.295849-2-u.kleine-koenig@pengutronix.de Signed-off-by: Rob Herring --- diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c index b5a7a31d8bd24..2504092e83026 100644 --- a/drivers/of/unittest.c +++ b/drivers/of/unittest.c @@ -1639,7 +1639,6 @@ static int unittest_gpio_remove(struct platform_device *pdev) if (devptr->chip.base != -1) gpiochip_remove(&devptr->chip); - platform_set_drvdata(pdev, NULL); kfree(devptr); return 0;