[U-Boot] [PATCH] usb: xhci: Fix bool initialization in xhci_bulk_tx

2018-01-20 Thread Gustavo A. R. Silva
Bool initializations should use true and false. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva Cc: Bin Meng Cc: Marek Vasut --- drivers/usb/host/xhci-ring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/host/xhci-ring.

Re: [U-Boot] [PATCH] usb: xhci: Fix bool initialization in xhci_bulk_tx

2018-01-21 Thread Marek Vasut
On 01/20/2018 09:37 AM, Gustavo A. R. Silva wrote: > Bool initializations should use true and false. > > This issue was detected with the help of Coccinelle. > > Signed-off-by: Gustavo A. R. Silva > Cc: Bin Meng > Cc: Marek Vasut Applied, thanks > --- > drivers/usb/host/xhci-ring.c | 2 +- >

Re: [U-Boot] [PATCH] usb: xhci: Fix bool initialization in xhci_bulk_tx

2018-01-21 Thread Gustavo A. R. Silva
Quoting Marek Vasut : On 01/20/2018 09:37 AM, Gustavo A. R. Silva wrote: Bool initializations should use true and false. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva Cc: Bin Meng Cc: Marek Vasut Applied, thanks Thank you, Marek. This is my v