summaryrefslogtreecommitdiff
path: root/drivers/usb/host/fhci-tds.c
diff options
context:
space:
mode:
authorGeyslan G. Bem <geyslan@gmail.com>2015-12-02 18:45:47 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-12-04 08:25:58 -0800
commit2d80b52efe30b823b9b52521811fbfdd23b05648 (patch)
tree281fd089b8b5a88368435064927c8917276a853b /drivers/usb/host/fhci-tds.c
parent6b82b1223e3b14afd89d167795671a9f4f77b2f0 (diff)
usb: whci: fhci: remove comparison to bool
Get rid of bool explicit comparisons. Caught by Coccinelle. Signed-off-by: Geyslan G. Bem <geyslan@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/fhci-tds.c')
-rw-r--r--drivers/usb/host/fhci-tds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/fhci-tds.c b/drivers/usb/host/fhci-tds.c
index 1498061f0aea..f82ad5df1b0d 100644
--- a/drivers/usb/host/fhci-tds.c
+++ b/drivers/usb/host/fhci-tds.c
@@ -85,7 +85,7 @@ static struct usb_td __iomem *next_bd(struct usb_td __iomem *base,
void fhci_push_dummy_bd(struct endpoint *ep)
{
- if (ep->already_pushed_dummy_bd == false) {
+ if (!ep->already_pushed_dummy_bd) {
u16 td_status = in_be16(&ep->empty_td->status);
out_be32(&ep->empty_td->buf_ptr, DUMMY_BD_BUFFER);