Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit debe6214 authored by Rene Herman's avatar Rene Herman Committed by Linus Torvalds
Browse files

lib/iomap.c:bad_io_access(): print 0x hex prefix



Be explicit about printing hex.

Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 80eb68d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ static void bad_io_access(unsigned long port, const char *access)
	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);
	}
}