From 539b4f72d0da83e4d20df7cfc27dc49c00316940 Mon Sep 17 00:00:00 2001 From: Benoit Taine Date: Fri, 16 May 2014 14:22:41 +0200 Subject: [PATCH] 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-format-patch failed