forked from Imagelibrary/rtems
2011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>
* bootcard.c: Correct printk() format.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user