Print a pointer as pointer, it's really trivial.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4052 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
1b9a5c636e
commit
48e8c3c36d
|
@ -94,7 +94,7 @@ int stream_init(void)
|
||||||
* long term, this has got to be fixed.
|
* long term, this has got to be fixed.
|
||||||
*/
|
*/
|
||||||
dest = (unsigned char *) (16 * 1024 * 1024);
|
dest = (unsigned char *) (16 * 1024 * 1024);
|
||||||
printk_debug("Uncompressing to RAM 0x%08lx ", dest);
|
printk_debug("Uncompressing to RAM %p ", dest);
|
||||||
olen = uncompress((uint8_t *) rom_start, (uint8_t *)dest );
|
olen = uncompress((uint8_t *) rom_start, (uint8_t *)dest );
|
||||||
printk_debug(" olen = 0x%08lx done.\n", olen);
|
printk_debug(" olen = 0x%08lx done.\n", olen);
|
||||||
if (olen != 0) {
|
if (olen != 0) {
|
||||||
|
|
Loading…
Reference in New Issue