[PATCH 2/2] char: lp: remove redundant initialization of err

From: Shreenidhi Shedi
Date: Fri Jun 03 2022 - 09:00:55 EST


From: Shreenidhi Shedi <sshedi@xxxxxxxxxx>

err is getting assigned with an appropriate value before returning,
hence this initialization is unnecessary.

Signed-off-by: Shreenidhi Shedi <sshedi@xxxxxxxxxx>
---
drivers/char/lp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/lp.c b/drivers/char/lp.c
index d474d02b6..536ceb111 100644
--- a/drivers/char/lp.c
+++ b/drivers/char/lp.c
@@ -1019,7 +1019,7 @@ static struct parport_driver lp_driver = {

static int __init lp_init(void)
{
- int i, err = 0;
+ int i, err;

if (parport_nr[0] == LP_PARPORT_OFF)
return 0;
--
2.36.1