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

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to