> From: Dan Carpenter [mailto:dan.carpen...@oracle.com]
> Sent: Monday, November 25, 2013 6:14 AM
> 
> Instead of writing code like:
> 
>       if (dwc2_qh_is_non_per(qh)) {
>               ...
>       } else {
>               ...
>       }
>       return;
> 
> write it like:
> 
>       if (dwc2_qh_is_non_per(qh)) {
>               ...
>               return;
>       }
>       ...
> 
> Signed-off-by: Dan Carpenter <dan.carpen...@oracle.com>

Acked-by: Paul Zimmerman <pa...@synopsys.com>

--
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