commit | 2bdf6ea51ce8dcd98f4f394d7203dbace01f5cbc | [log] [tgz] |
---|---|---|
author | Krzysztof Opasiak <k.opasiak@samsung.com> | Wed Apr 27 20:00:26 2016 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Thu Apr 28 12:28:08 2016 -0700 |
tree | 57ed98b5a30012dd4171427e5feed488f0820531 | |
parent | f945c546656e4330665a69aa35ae6491025128fc [diff] |
usb: usbip: vudc: Fix WARN_ON() usage pattern Fix WARN_ON() macro usage as suggested by Felipe. Instead of using: if (cond) { WARN_ON(1); do_stuff(); } Use a better pattern with WARN_ON() placed in if condition: if (WARN_ON(cond)) do_stuff(); Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>