j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: mcayland Date: Sun Mar 30 19:31:03 2014 New Revision: 1282 URL: http://tracker.coreboot.org/trac/openbios/changeset/1282
Log: OFMEM: tidy up "bad parameters" debugging message.
Display the values in lower-case hex to match the rest of the debugging code.
Signed-off-by: Mark Cave-Ayland mark.cave-ayland@ilande.co.uk
Modified: trunk/openbios-devel/libopenbios/ofmem_common.c
Modified: trunk/openbios-devel/libopenbios/ofmem_common.c ============================================================================== --- trunk/openbios-devel/libopenbios/ofmem_common.c Sun Mar 30 19:31:01 2014 (r1281) +++ trunk/openbios-devel/libopenbios/ofmem_common.c Sun Mar 30 19:31:03 2014 (r1282) @@ -791,7 +791,7 @@ if( (phys & (PAGE_SIZE - 1)) || (virt & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1)) ) {
OFMEM_TRACE("ofmem_map: Bad parameters (" - FMT_plx " " FMT_ucellX " " FMT_ucellX ")\n", + FMT_plx " " FMT_ucellx " " FMT_ucellx ")\n", phys, virt, size );
phys &= PAGE_MASK;