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

No differences found