aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorShreenidhi Shedi <sshedi@vmware.com>2022-06-03 18:30:40 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-06-10 15:29:50 +0200
commit6497e7776441e0567c02b9c12b133d2ba51918df (patch)
tree419469836ca8af112ddbc67d9ca80139953442e7 /drivers/char
parentLinux 5.19-rc1 (diff)
downloadlinux-dev-6497e7776441e0567c02b9c12b133d2ba51918df.tar.xz
linux-dev-6497e7776441e0567c02b9c12b133d2ba51918df.zip
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 <sshedi@vmware.com> Link: https://lore.kernel.org/r/20220603130040.601673-2-sshedi@vmware.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char')
-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;