Tag: 1ef53ebfa9ff5b205604fc781868765e00ae875f

net: davinci_emac: fix error return code

Author: Julia Lawall <julia.lawall@lip6.fr> Propagate error code on failure. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ identifier ret; expression e1,e2; @@ ( if (\(ret < 0\|ret != 0\)) { ... return ret; } | ret = 0 ) ... when != ret = e1 when …

Continue reading