Re: [PATCH v2] usb: ehci: ohci: use true/false for bool

2015-12-02 Thread Geyslan G. Bem
2015-12-02 19:23 GMT-03:00 Geyslan G. Bem : > 2015-12-02 19:16 GMT-03:00 Greg Kroah-Hartman : >> On Wed, Dec 02, 2015 at 07:09:19PM -0300, Geyslan G. Bem wrote: >>> When declaring/initializing bool use true instead of 1. If it's false, >>> there's no need to explicit initialize it, once it's defaul

Re: [PATCH v2] usb: ehci: ohci: use true/false for bool

2015-12-02 Thread Geyslan G. Bem
2015-12-02 19:16 GMT-03:00 Greg Kroah-Hartman : > On Wed, Dec 02, 2015 at 07:09:19PM -0300, Geyslan G. Bem wrote: >> When declaring/initializing bool use true instead of 1. If it's false, >> there's no need to explicit initialize it, once it's default. >> >> Caught by coccinelle. >> >> Signed-off-b

Re: [PATCH v2] usb: ehci: ohci: use true/false for bool

2015-12-02 Thread Greg Kroah-Hartman
On Wed, Dec 02, 2015 at 07:09:19PM -0300, Geyslan G. Bem wrote: > When declaring/initializing bool use true instead of 1. If it's false, > there's no need to explicit initialize it, once it's default. > > Caught by coccinelle. > > Signed-off-by: Geyslan G. Bem > --- > drivers/usb/host/ehci-hcd.

[PATCH v2] usb: ehci: ohci: use true/false for bool

2015-12-02 Thread Geyslan G. Bem
When declaring/initializing bool use true instead of 1. If it's false, there's no need to explicit initialize it, once it's default. Caught by coccinelle. Signed-off-by: Geyslan G. Bem --- drivers/usb/host/ehci-hcd.c | 2 +- drivers/usb/host/ohci-hcd.c | 4 ++-- drivers/usb/host/u132-hcd.c | 2