Tag: 05713ba9055f1a209d50e480626f36c401bda3ad

crypto: don’t export static symbol

Author: Julia Lawall <Julia.Lawall@lip6.fr> The semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @r@ type T; identifier f; @@ static T f (…) { … } @@ identifier r.f; declarer name EXPORT_SYMBOL_GPL; @@ -EXPORT_SYMBOL_GPL(f); // Signed-off-by: Julia Lawall Signed-off-by: Herbert Xu — arch/x86/crypto/glue_helper.c | 1 – 1 file changed, 1 deletion(-)   …

Continue reading