Tag: 36d344131c154c0fb7dd6a3703fc1b29c56a75a1

drivers/net/wireless/wl12xx: Use available error codes

Author: Julia Lawall <julia@diku.dk> Error codes are stored in ret, but the return value is always 0. Return ret instead. The semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @r@ local idexpression x; constant C; @@ if (…) { … x = -C … when != x ( return ; | return …

Continue reading