aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_timer.c
diff options
context:
space:
mode:
authorJulia Lawall <[email protected]>2010-10-02 04:37:07 +0000
committerDavid S. Miller <[email protected]>2010-10-04 05:06:11 +0000
commit1790c228fb3f57793160c0f0c20b55c398cab106 (patch)
tree70034ca360b83b8e8f63c711b8a49bfc6b7eee3c /net/ipv4/tcp_timer.c
parentdrivers-net-tulip-de4x5c-fix-copy-length-in-de4x5_ioctl-checkpatch-fixes (diff)
downloadkernel-1790c228fb3f57793160c0f0c20b55c398cab106.tar.gz
kernel-1790c228fb3f57793160c0f0c20b55c398cab106.zip
drivers/atm/idt77252.c: Remove unnecessary error check
This code does not call deinit_card(card); in an error case, as done in other error-handling code in the same function. But actually, the called function init_sram can only return 0, so there is no need for the error check at all. init_sram is also given a void return type, and its single return statement at the end of the function is dropped. A simplified version of the sematic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r exists@ @r@ statement S1,S2,S3; constant C1,C2,C3; @@ *if (...) {... S1 return -C1;} ... *if (...) {... when != S1 return -C2;} ... *if (...) {... S1 return -C3;} // </smpl> Signed-off-by: Julia Lawall <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_timer.c')
0 files changed, 0 insertions, 0 deletions