]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commitc686cc72e3731230cafd8ca513c2f191e683fd7f
tree3c5fe7a0347ea71c41689076a6e5ba71e8bc30c4
parent29c96134df1589f915a4a5a841b7cdc40371bad3
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