dect
/
linux-2.6
Archived
13
0
Fork 0

watchdog: hpwdt: formatting of pointers in printk()

Use %p instead of %08x in printk().

Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
Kulikov Vasiliy 2010-07-14 22:06:30 +04:00 committed by Wim Van Sebroeck
parent 4a370278e1
commit adb23631a7
1 changed files with 2 additions and 2 deletions

View File

@ -246,8 +246,8 @@ static int __devinit cru_detect(unsigned long map_entry,
physical_bios_offset);
printk(KERN_DEBUG "hpwdt: CRU Length: 0x%lx\n",
cru_length);
printk(KERN_DEBUG "hpwdt: CRU Mapped Address: 0x%x\n",
(unsigned int)&cru_rom_addr);
printk(KERN_DEBUG "hpwdt: CRU Mapped Address: %p\n",
&cru_rom_addr);
}
iounmap(bios32_map);
return retval;