2011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>

* bootcard.c: Correct printk() format.
This commit is contained in:
Joel Sherrill
2011-08-29 21:38:09 +00:00
parent 50d1c45d36
commit 9549ed9b86
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>
* bootcard.c: Correct printk() format.
2011-07-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* include/uart-output-char.h, src/uart-output-char.c: Support for

View File

@@ -178,9 +178,9 @@ uint32_t boot_card(
if ( work_area_size <= Configuration.work_space_size ) {
printk(
"bootcard: work space too big for work area: %p > %p\n",
(void *) Configuration.work_space_size,
(void *) work_area_size
"bootcard: work space too big for work area: 0x%08x > 0x%08x\n",
Configuration.work_space_size,
work_area_size
);
bsp_cleanup(1);
return 1;