libpayload: fix compile error with enabled USB_DEBUG

Commit c4348d0 ("libpayload: Remove bitfield use from OHCI data
structures") missed to adapt a debug message. This patch fixes this.

Change-Id: I5f6a4be9c7f6f99cb103926772717e15a3cbca70
Signed-off-by: Mathias Krause <mathias.krause@secunet.com>
Reviewed-on: http://review.coreboot.org/653
Tested-by: build bot (Jenkins)
Reviewed-by: Bernhard Urban <lewurm@gmail.com>
Reviewed-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
Mathias Krause 2012-02-17 12:23:26 +01:00 committed by Peter Stuge
parent c877d22a20
commit 0864016b0d
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ dump_td(td_t *cur, int level)
const char *spc=spaces+(10-level); const char *spc=spaces+(10-level);
debug("%std at %x (%s), condition code: %s\n", spc, cur, direction[(cur->config & TD_DIRECTION_MASK) >> TD_DIRECTION_SHIFT], debug("%std at %x (%s), condition code: %s\n", spc, cur, direction[(cur->config & TD_DIRECTION_MASK) >> TD_DIRECTION_SHIFT],
completion_codes[(cur->config & TD_CC_MASK) >> TD_CC_SHIFT]); completion_codes[(cur->config & TD_CC_MASK) >> TD_CC_SHIFT]);
debug("%s toggle: %x\n", spc, cur->toggle); debug("%s toggle: %x\n", spc, !!(cur->config & TD_TOGGLE_DATA1));
#endif #endif
} }