From: Benoit Taine Date: Fri, 16 May 2014 12:22:41 +0000 (+0200) Subject: staging/rtl8192u: Put EXPORT_SYMBOL just after the exported function X-Git-Tag: omap-for-v3.16/fixes-against-rc1~39^2~36^2~435 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=539b4f72d0da83e4d20df7cfc27dc49c00316940;p=pandora-kernel.git staging/rtl8192u: Put EXPORT_SYMBOL just after the exported function Export of symbols statement must be placed right after the definition to meet kernel coding style guidelines. This issue was reported by checkpatch. A simplified version of the semantic patch that makes this change is as follows (http://coccinelle.lip6.fr/): // @ r @ identifier f; @@ - EXPORT_SYMBOL(f); @@ identifier r.f; @@ f(...) { ... } + EXPORT_SYMBOL(f); // Signed-off-by: Benoit Taine Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed