[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LFD.2.01.0909140749300.3654@localhost.localdomain>
Date: Mon, 14 Sep 2009 07:50:47 -0700 (PDT)
From: Linus Torvalds <torvalds@...ux-foundation.org>
To: Anirban Sinha <ASinha@...gmasystems.com>
cc: linux-kernel@...r.kernel.org,
Randy Dunlap <randy.dunlap@...cle.com>
Subject: Re: [PATCH] cleanup legacy console_print function
On Fri, 11 Sep 2009, Anirban Sinha wrote:
>
> - console_print(text); \
> - console_print("\n"); \
> + printk(KERN_EMERG "%s", text); \
> + printk(KERN_EMERG "\n"); \
Just clean it up to be
printk(KERN_EMERG "%s\n", text);
instead while at it.
> #define TRACE_CHR(chr) \
> { \
> if(dtlk_trace) \
> - console_print(chr); \
> + printk(KERN_EMERG "%c", chr); \
That can't be right. The translation is to use "%s", not "%c".
Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists