diff options
author | Andi Kleen <andi@firstfloor.org> | 2008-10-07 12:15:32 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2008-10-16 12:14:27 -0600 |
commit | dc02c5290c02c6f6a5fdcee89260ef35f9af3970 (patch) | |
tree | fb8c3faa71d2becac6f816cd169f199a32aa7ac5 /kernel | |
parent | 7e3975617df8dd8b7fd94f14200abdec9f71729e (diff) |
Add kerneldoc documentation for new printk format extensions
Add documentation in kerneldoc for new printk format extensions
This patch documents the new %pS/%pF options in printk in kernel doc.
Hope I didn't miss any other extension.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/printk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/printk.c b/kernel/printk.c index b51b1567bb5..cfa23243279 100644 --- a/kernel/printk.c +++ b/kernel/printk.c @@ -593,6 +593,8 @@ static int have_callable_console(void) * * See also: * printf(3) + * + * See the vsnprintf() documentation for format string extensions over C99. */ asmlinkage int printk(const char *fmt, ...) |