Re: [PATCH] net_sched: remove exceptional & on function name

2014-07-24 Thread David Miller
From: Himangi Saraogi Date: Fri, 25 Jul 2014 01:50:41 +0530 > In this file, function names are otherwise used as pointers without &. > > A simplified version of the Coccinelle semantic patch that makes this > change is as follows: ... > Signed-off-by: Himangi Saraogi > Acked-by: Julia Lawall

[PATCH] net_sched: remove exceptional & on function name

2014-07-24 Thread Himangi Saraogi
In this file, function names are otherwise used as pointers without &. A simplified version of the Coccinelle semantic patch that makes this change is as follows: // @r@ identifier f; @@ f(...) { ... } @@ identifier r.f; @@ - &f + f // Signed-off-by: Himangi Saraogi Acked-by: Julia Lawall