usb: dwc3: gadget: pass a condition to dev_WARN_ONCE()
authorFelipe Balbi <balbi@ti.com>
Thu, 10 Dec 2015 19:08:20 +0000 (13:08 -0600)
committerFelipe Balbi <balbi@ti.com>
Wed, 16 Dec 2015 16:07:27 +0000 (10:07 -0600)
commit95ca961c758cd9ce789247098b09c39017637e58
treeab592e351593daddcfa530ecad149449bfb18668
parent855ed04a3758b205e84b269f92d26ab36ed8e2f7
usb: dwc3: gadget: pass a condition to dev_WARN_ONCE()

instead of using:

if (condition) {
dev_WARN_ONCE(dev, true, "foo");
return -EINVAL;
}

let's use:

if (dev_WARN_ONCE(dev, condition, "foo"))
return -EINVAL;

Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/gadget.c
This page took 0.028377 seconds and 5 git commands to generate.