aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShreenidhi Shedi <[email protected]>2022-06-03 18:30:40 +0530
committerGreg Kroah-Hartman <[email protected]>2022-06-10 15:29:50 +0200
commit6497e7776441e0567c02b9c12b133d2ba51918df (patch)
tree419469836ca8af112ddbc67d9ca80139953442e7
parentf2906aa863381afb0015a9eb7fefad885d4e5a56 (diff)
char: lp: remove redundant initialization of err
err is getting assigned with an appropriate value before returning, hence this initialization is unnecessary. Signed-off-by: Shreenidhi Shedi <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/char/lp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/lp.c b/drivers/char/lp.c
index 0e22e3b0a04e..38aad99ebb61 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;