Hello there,

[linux-3.16-rc4/drivers/usb/gadget/net2272.c:2075]: (style) Boolean result is 
used in bitwise operation. Clarify expression with parentheses.

    if (!intcsr & (1 << NET2272_PCI_IRQ)) {

Maybe the programmer intended

    if (!(intcsr & (1 << NET2272_PCI_IRQ))) {

Regards

David Binderman


                                          --
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to