[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-eba11d6da7a983cedb0acf32a38e4d0daa8b5d0e@git.kernel.org>
Date: Mon, 14 Dec 2009 07:58:19 GMT
From: tip-bot for Joe Perches <joe@...ches.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
joe@...ches.com, torvalds@...ux-foundation.org,
peterz@...radead.org, tglx@...utronix.de, sfr@...b.auug.org.au,
mingo@...e.hu
Subject: [tip:x86/urgent] x86: Fix build warning in arch/x86/mm/mmio-mod.c
Commit-ID: eba11d6da7a983cedb0acf32a38e4d0daa8b5d0e
Gitweb: http://git.kernel.org/tip/eba11d6da7a983cedb0acf32a38e4d0daa8b5d0e
Author: Joe Perches <joe@...ches.com>
AuthorDate: Sun, 13 Dec 2009 23:24:03 -0800
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Mon, 14 Dec 2009 08:55:43 +0100
x86: Fix build warning in arch/x86/mm/mmio-mod.c
Stephen Rothwell reported these warnings:
arch/x86/mm/mmio-mod.c: In function 'print_pte':
arch/x86/mm/mmio-mod.c:100: warning: too many arguments for format
arch/x86/mm/mmio-mod.c:106: warning: too many arguments for format
The 'fmt' was left out accidentally.
Reported-by: Stephen Rothwell <sfr@...b.auug.org.au>
Signed-off-by: Joe Perches <joe@...ches.com>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Linus <torvalds@...ux-foundation.org>
LKML-Reference: <1260775443.18538.16.camel@...-Laptop.home>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
arch/x86/mm/mmio-mod.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/mm/mmio-mod.c b/arch/x86/mm/mmio-mod.c
index 4c765e9..34a3291 100644
--- a/arch/x86/mm/mmio-mod.c
+++ b/arch/x86/mm/mmio-mod.c
@@ -20,7 +20,7 @@
* Derived from the read-mod example from relay-examples by Tom Zanussi.
*/
-#define pr_fmt(fmt) "mmiotrace: "
+#define pr_fmt(fmt) "mmiotrace: " fmt
#define DEBUG 1
--
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