From: Andrei Coardos Date: Mon, 28 Aug 2023 10:29:43 +0000 (+0300) Subject: hwrng: xiphera - removed unnneded platform_set_drvdata() X-Git-Tag: io_uring-6.7-2023-11-10~9^2~271 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=3cf755995e49df0cfac9377970c4c507b4a18ca4;p=linux-2.6-block.git hwrng: xiphera - removed unnneded platform_set_drvdata() This function call was found to be unnecessary as there is no equivalent platform_get_drvdata() call to access the private data of the driver. Also, the private data is defined in this driver, so there is no risk of it being accessed outside of this driver file. Signed-off-by: Andrei Coardos Reviewed-by: Alexandru Ardelean Signed-off-by: Herbert Xu --- diff --git a/drivers/char/hw_random/xiphera-trng.c b/drivers/char/hw_random/xiphera-trng.c index 2c586d1fe8a9..4af64f76c8d6 100644 --- a/drivers/char/hw_random/xiphera-trng.c +++ b/drivers/char/hw_random/xiphera-trng.c @@ -121,8 +121,6 @@ static int xiphera_trng_probe(struct platform_device *pdev) return ret; } - platform_set_drvdata(pdev, trng); - return 0; }