commit | b85d717c1b66a40f006148a31e6bbb88ca6b45c0 | [log] [tgz] |
---|---|---|
author | Peter Senna Tschudin <peter.senna@gmail.com> | Wed Oct 02 14:19:49 2013 +0200 |
committer | David S. Miller <davem@davemloft.net> | Thu Oct 03 15:40:33 2013 -0400 |
tree | e763094f2494ff4cb3ce83e3ec64bc4cef3b5ee2 | |
parent | 55705639807387d1f2637fd6ee9fd8cc087f3903 [diff] |
net: bnx2x: Change variable type to bool The variable rc is only assigned the values true and false. The function bnx2x_prev_is_path_marked already returns bool. Change rc type to bool. The simplified semantic patch that find this problem is as follows (http://coccinelle.lip6.fr/): @exists@ type T; identifier b; @@ - T + bool b = ...; ... when any b = \(true\|false\) Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>