2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>

PR 1391/bsps
	* startup/spurious.c: Format was %d but had leading 0x.
This commit is contained in:
Joel Sherrill
2009-03-09 16:53:27 +00:00
parent f855b9e3d8
commit 94da794635
6 changed files with 18 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>
PR 1391/bsps
* startup/spurious.c: Format was %d but had leading 0x.
2009-03-02 Daniel Hellstrom <daniel@gaisler.com> 2009-03-02 Daniel Hellstrom <daniel@gaisler.com>
PR 1390/bsps PR 1390/bsps

View File

@@ -33,7 +33,7 @@ rtems_isr bsp_spurious_handler(
real_trap = SPARC_REAL_TRAP_NUMBER(trap); real_trap = SPARC_REAL_TRAP_NUMBER(trap);
printk( "Unexpected trap (0x%2d) at address 0x%08x\n", real_trap, isf->tpc); printk( "Unexpected trap (%2d) at address 0x%08x\n", real_trap, isf->tpc);
switch (real_trap) { switch (real_trap) {

View File

@@ -1,3 +1,8 @@
2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>
PR 1391/bsps
* startup/spurious.c: Format was %d but had leading 0x.
2009-03-02 Daniel Hellstrom <daniel@gaisler.com> 2009-03-02 Daniel Hellstrom <daniel@gaisler.com>
PR 1390/bsps PR 1390/bsps

View File

@@ -33,7 +33,7 @@ rtems_isr bsp_spurious_handler(
real_trap = SPARC_REAL_TRAP_NUMBER(trap); real_trap = SPARC_REAL_TRAP_NUMBER(trap);
printk( "Unexpected trap (0x%2d) at address 0x%08x\n", real_trap, isf->tpc); printk( "Unexpected trap (%2d) at address 0x%08x\n", real_trap, isf->tpc);
switch (real_trap) { switch (real_trap) {

View File

@@ -1,3 +1,8 @@
2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>
PR 1391/bsps
* startup/spurious.c: Format was %d but had leading 0x.
2009-03-02 Daniel Hellstrom <daniel@gaisler.com> 2009-03-02 Daniel Hellstrom <daniel@gaisler.com>
PR 1390/bsps PR 1390/bsps

View File

@@ -38,7 +38,7 @@ rtems_isr bsp_spurious_handler(
real_trap = SPARC_REAL_TRAP_NUMBER(trap); real_trap = SPARC_REAL_TRAP_NUMBER(trap);
printk( "Unexpected trap (0x%2d) at address 0x%08x\n", real_trap, isf->tpc); printk( "Unexpected trap (%2d) at address 0x%08x\n", real_trap, isf->tpc);
switch (real_trap) { switch (real_trap) {