linux/drivers/net/ethernet/myricom
Peter Senna Tschudin de36cef3e7 net: myri10ge: Change variable type to bool
There is the rc variable on both myri10ge_ss_lock_napi and
myri10ge_ss_lock_poll functions. In both cases rc is only assigned the
values true and false. Both functions already return 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>
2013-10-03 15:40:33 -04:00
..
myri10ge net: myri10ge: Change variable type to bool 2013-10-03 15:40:33 -04:00
Kconfig myri10ge: Convert from LRO to GRO 2012-11-30 13:44:04 -05:00
Makefile