The patch titled
lib/iomap.c:bad_io_access(): print 0x hex prefix
has been removed from the -mm tree. Its filename was
lib-iomapcbad_io_access-print-0x-hex-prefix.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
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
origin.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