From: Saurav Girepunje Date: Mon, 7 Oct 2019 18:26:53 +0000 (+0530) Subject: usb: core: devio.c: Fix assignment of 0/1 to bool variables X-Git-Tag: v5.15~5055^2~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=71464db9c2492478f2b396d3954e71b38d28e8c3;p=platform%2Fkernel%2Flinux-starfive.git usb: core: devio.c: Fix assignment of 0/1 to bool variables Use true/false for is_in bool type in function proc_do_submiturb. Signed-off-by: Saurav Girepunje Link: https://lore.kernel.org/r/20191007182649.GA7068@saurav Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index 3f89955..7865809 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c @@ -1550,10 +1550,10 @@ static int proc_do_submiturb(struct usb_dev_state *ps, struct usbdevfs_urb *uurb uurb->buffer_length = le16_to_cpu(dr->wLength); uurb->buffer += 8; if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) { - is_in = 1; + is_in = true; uurb->endpoint |= USB_DIR_IN; } else { - is_in = 0; + is_in = false; uurb->endpoint &= ~USB_DIR_IN; } if (is_in)