NET: white space/coding style cleanup of asix driver
authorGrant Grundler <grundler@chromium.org>
Tue, 4 Oct 2011 09:55:18 +0000 (09:55 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 4 Oct 2011 20:25:31 +0000 (16:25 -0400)
commit83e1b91845403f6322284a6e74581cc47d57de9f
tree3c5fe7a0347ea71c41689076a6e5ba71e8bc30c4
parent610d885d3176bd807b582401e8990898ae25bed2
NET: white space/coding style cleanup of asix driver

check patch was complaining...mostly replaced:
   if ((ret = asix_foo(xx)) < 0) ...
with
   ret = asix_foo(xx);
   if (ret < 0) ...

Signed-off-by: Grant Grundler <grundler@chromium.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/asix.c
This page took 0.026097 seconds and 5 git commands to generate.