char: lp: use true or false for boolean values
Assign true or false to boolean variables instead of an integer value. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
aac6830ec1
commit
9ff6576e12
@ -900,7 +900,7 @@ static int __init lp_setup (char *str)
|
|||||||
printk(KERN_INFO "lp: too many ports, %s ignored.\n",
|
printk(KERN_INFO "lp: too many ports, %s ignored.\n",
|
||||||
str);
|
str);
|
||||||
} else if (!strcmp(str, "reset")) {
|
} else if (!strcmp(str, "reset")) {
|
||||||
reset = 1;
|
reset = true;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user