usb: gadget: dummy_hcd: fix unneeded else-if condition

We already know at this point that to_host is false.

Signed-off-by: Igor Kotrasinski <i.kotrasinsk@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
Igor Kotrasinski 2015-09-15 16:55:30 +02:00 committed by Felipe Balbi
parent 21c3ee9386
commit 5dda5be9d5

View file

@ -1421,7 +1421,7 @@ top:
*status = -EOVERFLOW;
else
*status = 0;
} else if (!to_host) {
} else {
*status = 0;
if (host_len > dev_len)
req->req.status = -EOVERFLOW;