Tag: 26e2fa765cd7325906ef8bbee366c74e24b3d768

staging: rtl8192e: make return of 0 explicit

Author: Julia Lawall <Julia.Lawall@lip6.fr> Delete unnecessary use of a local variable to immediately return 0. A simplified version of the semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @r exists@ local idexpression ret; expression e; position p; @@ -ret = 0; … when != ret = e return – ret + 0 …

Continue reading