cbfs: Revise debug messages.
Some variables are using incorrect data type in debug messages. Also corrects a typo (extra 'x'). Change-Id: Ia3014ea018f8c1e4733c54a7d9ee196d0437cfbb Signed-off-by: Hung-Te Lin <hungte@chromium.org> Reviewed-on: http://review.coreboot.org/2294 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks <dhendrix@chromium.org>
This commit is contained in:
parent
d87d639e26
commit
966e2dbb65
|
@ -177,8 +177,8 @@ void *cbfs_simple_buffer_map(struct cbfs_simple_buffer *buffer,
|
||||||
struct cbfs_media *media,
|
struct cbfs_media *media,
|
||||||
size_t offset, size_t count) {
|
size_t offset, size_t count) {
|
||||||
void *address = buffer->buffer + buffer->allocated;;
|
void *address = buffer->buffer + buffer->allocated;;
|
||||||
DEBUG("simple_buffer_map(offset=%d, count=%d): "
|
DEBUG("simple_buffer_map(offset=%zd, count=%zd): "
|
||||||
"allocated=%d, size=%d, last_allocate=%d\n",
|
"allocated=%zd, size=%zd, last_allocate=%zd\n",
|
||||||
offset, count, buffer->allocated, buffer->size,
|
offset, count, buffer->allocated, buffer->size,
|
||||||
buffer->last_allocate);
|
buffer->last_allocate);
|
||||||
if (buffer->allocated + count >= buffer->size)
|
if (buffer->allocated + count >= buffer->size)
|
||||||
|
@ -198,7 +198,7 @@ void *cbfs_simple_buffer_unmap(struct cbfs_simple_buffer *buffer,
|
||||||
// TODO Add simple buffer management so we can free more than last
|
// TODO Add simple buffer management so we can free more than last
|
||||||
// allocated one.
|
// allocated one.
|
||||||
DEBUG("simple_buffer_unmap(address=0x%p): "
|
DEBUG("simple_buffer_unmap(address=0x%p): "
|
||||||
"allocated=%d, size=%d, last_allocate=%d\n",
|
"allocated=%zd, size=%zd, last_allocate=%zd\n",
|
||||||
address, buffer->allocated, buffer->size,
|
address, buffer->allocated, buffer->size,
|
||||||
buffer->last_allocate);
|
buffer->last_allocate);
|
||||||
if ((buffer->buffer + buffer->allocated - buffer->last_allocate) ==
|
if ((buffer->buffer + buffer->allocated - buffer->last_allocate) ==
|
||||||
|
|
|
@ -132,7 +132,7 @@ struct cbfs_file *cbfs_get_file(struct cbfs_media *media, const char *name)
|
||||||
uint32_t new_align = align;
|
uint32_t new_align = align;
|
||||||
if (offset % align)
|
if (offset % align)
|
||||||
new_align += align - (offset % align);
|
new_align += align - (offset % align);
|
||||||
ERROR("ERROR: No file header found at 0x%xx - "
|
ERROR("ERROR: No file header found at 0x%x - "
|
||||||
"try next aligned address: 0x%x.\n", offset,
|
"try next aligned address: 0x%x.\n", offset,
|
||||||
offset + new_align);
|
offset + new_align);
|
||||||
offset += new_align;
|
offset += new_align;
|
||||||
|
|
Loading…
Reference in New Issue