diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-23 01:40:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-26 21:34:29 -0400 |
commit | 807540baae406c84dcb9c1c8ef07a56d2d2ae84a (patch) | |
tree | ccd5c2cb57710dd6b73cf8df11eedf67abc14ae4 /drivers/net/pcnet32.c | |
parent | cb4dfe562cac6fcb544df752e40c1d78000d0712 (diff) |
drivers/net: return operator cleanup
Change "return (EXPR);" to "return EXPR;"
return is not a function, parentheses are not required.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/pcnet32.c')
-rw-r--r-- | drivers/net/pcnet32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/pcnet32.c b/drivers/net/pcnet32.c index c200c2821730..aee3bb0358bf 100644 --- a/drivers/net/pcnet32.c +++ b/drivers/net/pcnet32.c | |||
@@ -376,7 +376,7 @@ static void pcnet32_wio_reset(unsigned long addr) | |||
376 | static int pcnet32_wio_check(unsigned long addr) | 376 | static int pcnet32_wio_check(unsigned long addr) |
377 | { | 377 | { |
378 | outw(88, addr + PCNET32_WIO_RAP); | 378 | outw(88, addr + PCNET32_WIO_RAP); |
379 | return (inw(addr + PCNET32_WIO_RAP) == 88); | 379 | return inw(addr + PCNET32_WIO_RAP) == 88; |
380 | } | 380 | } |
381 | 381 | ||
382 | static struct pcnet32_access pcnet32_wio = { | 382 | static struct pcnet32_access pcnet32_wio = { |
@@ -431,7 +431,7 @@ static void pcnet32_dwio_reset(unsigned long addr) | |||
431 | static int pcnet32_dwio_check(unsigned long addr) | 431 | static int pcnet32_dwio_check(unsigned long addr) |
432 | { | 432 | { |
433 | outl(88, addr + PCNET32_DWIO_RAP); | 433 | outl(88, addr + PCNET32_DWIO_RAP); |
434 | return ((inl(addr + PCNET32_DWIO_RAP) & 0xffff) == 88); | 434 | return (inl(addr + PCNET32_DWIO_RAP) & 0xffff) == 88; |
435 | } | 435 | } |
436 | 436 | ||
437 | static struct pcnet32_access pcnet32_dwio = { | 437 | static struct pcnet32_access pcnet32_dwio = { |