The patch titled
lib/iomap.c:bad_io_access(): print 0x hex prefix
has been added to the -mm tree. Its filename is
lib-iomapcbad_io_access-print-0x-hex-prefix.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: lib/iomap.c:bad_io_access(): print 0x hex prefix
From: Rene Herman <[EMAIL PROTECTED]>
Be explicit about printing hex.
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
lib/iomap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN lib/iomap.c~lib-iomapcbad_io_access-print-0x-hex-prefix lib/iomap.c
--- a/lib/iomap.c~lib-iomapcbad_io_access-print-0x-hex-prefix
+++ a/lib/iomap.c
@@ -40,7 +40,7 @@ static void bad_io_access(unsigned long
static int count = 10;
if (count) {
count--;
- printk(KERN_ERR "Bad IO access at port %lx (%s)\n", port,
access);
+ printk(KERN_ERR "Bad IO access at port %#lx (%s)\n", port,
access);
WARN_ON(1);
}
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-alsa.patch
lib-iomapcbad_io_access-print-0x-hex-prefix.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html