Tag: ecf2e02cd419fa4e50711b467931f652943735fd

staging: rtl8712: Remove exceptional & on function name

Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> Remove exceptional ‘&’ operator in front of a function name. The Coccinelle semantic patch that is used to make this change is as follows: // @r@ identifier f; @@ f(…) { … } @@ identifier r.f; @@ – &f + f @m@ type T; identifier f; @@ T f(…); @@ …

Continue reading