diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-08-25 23:15:34 (GMT) |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-08-25 23:15:34 (GMT) |
commit | 6953faf976c79a48b778a95319b8314419f7726b (patch) | |
tree | aeaebecbe7904df38911aabde4d53916c07694d6 /arch/arm/mach-omap2/id.c | |
parent | e49d519c456f4fb6f4a0473bc04ba30bb805fce5 (diff) | |
download | linux-6953faf976c79a48b778a95319b8314419f7726b.tar.xz |
ARM: OMAP: fix %d confusingly prefixed with 0x in format string
Fix %d confusingly prefixed with 0x in format string.
Signed-off-by: Hans Wennborg <hans@hanshq.net>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/id.c')
-rw-r--r-- | arch/arm/mach-omap2/id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index d42022f..53841de 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c @@ -663,7 +663,7 @@ void __init dra7xxx_check_revision(void) default: /* Unknown default to latest silicon rev as default*/ - pr_warn("%s: unknown idcode=0x%08x (hawkeye=0x%08x,rev=0x%d)\n", + pr_warn("%s: unknown idcode=0x%08x (hawkeye=0x%08x,rev=0x%x)\n", __func__, idcode, hawkeye, rev); omap_revision = DRA752_REV_ES1_1; } |