Tag: c061b18df0f1fe3f50fe451dbbdc9ede3c19701a

drivers/net: Remove address use from assignments of function pointers

Author: Joe Perches <joe@perches.com> “foo = &function” is more commonly written “foo = function” Done with coccinelle script: // @r@ identifier f; @@ f(…) { … } @@ identifier r.f; @@ – &f + f // drivers/net/tehuti.c used a function and struct with the same name, the function was renamed. Compile tested x86 only. Signed-off-by: …

Continue reading