fm10k: fix missing newline in debug log
authorStephen Hemminger <stephen@networkplumber.org>
Thu, 16 Jul 2015 21:06:40 +0000 (14:06 -0700)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 22 Jul 2015 10:42:44 +0000 (12:42 +0200)
If FM10K_DEBUG_DRIVER is enabled, then the log messages about
function entry are missing newline causing extremely long lines.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Jing Chen <jing.d.chen@intel.com>
drivers/net/fm10k/base/fm10k_osdep.h

index 04f8fe9..53c433c 100644 (file)
@@ -45,7 +45,7 @@ POSSIBILITY OF SUCH DAMAGE.
 #define ERROR_REPORT2(v1, v2, v3)   do { } while (0)
 
 #define STATIC                  static
-#define DEBUGFUNC(F)            DEBUGOUT(F);
+#define DEBUGFUNC(F)            DEBUGOUT(F "\n");
 #define DEBUGOUT(S, args...)    PMD_DRV_LOG_RAW(DEBUG, S, ##args)
 #define DEBUGOUT1(S, args...)   DEBUGOUT(S, ##args)
 #define DEBUGOUT2(S, args...)   DEBUGOUT(S, ##args)