From: Colin Ian King Date: Thu, 29 Apr 2021 11:32:53 +0000 (+0100) Subject: hwrng: amd - remove redundant initialization of variable err X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b7c3635e56d6561436af59b9876faa7cc8389644;p=linux.git hwrng: amd - remove redundant initialization of variable err The variable err is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King Signed-off-by: Herbert Xu --- diff --git a/drivers/char/hw_random/amd-rng.c b/drivers/char/hw_random/amd-rng.c index 9959c762da2f8..d8d4ef5214a19 100644 --- a/drivers/char/hw_random/amd-rng.c +++ b/drivers/char/hw_random/amd-rng.c @@ -126,7 +126,7 @@ static struct hwrng amd_rng = { static int __init mod_init(void) { - int err = -ENODEV; + int err; struct pci_dev *pdev = NULL; const struct pci_device_id *ent; u32 pmbase;