On Tue, 2010-10-26 at 18:28 -0700, Dmitry Torokhov wrote:
Adding \n is the default kernel style.
USB uses a similar dbg macro with a relatively
high error rate.
I fixed some in this commit below awhile ago,
but these keep creeping back in, so they _are_
error prone in actual use.
commit 759f3634267a67ac90f3fa7fc06510dfd43b4e45
Author: Joe Perches <joe@perches.com>
Date: Fri Feb 5 16:50:08 2010 -0800
USB: serial: Remove unnecessary \n's from dbg uses
#define dbg adds the newline, messages shouldn't.
Converted dbg("%s", "some string") to dbg("some string")
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
--