summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/score603e/PCI_bus/universe.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-17 14:09:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-09-17 14:09:43 +0000
commit50f93fbbcba7df632be17e5ce8bb83f99572eb2e (patch)
tree1b30e8a52f4d50a7eff19bc15798d891e670f510 /c/src/lib/libbsp/powerpc/score603e/PCI_bus/universe.c
parent2007-09-17 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-50f93fbbcba7df632be17e5ce8bb83f99572eb2e.tar.bz2
2007-09-17 Joel Sherrill <joel.sherrill@OARcorp.com>
* PCI_bus/universe.c, console/console.c, include/bsp.h, irq/FPGA.c, startup/bspstart.c, startup/genpvec.c, startup/spurious.c: Eliminate DEBUG_puts.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/powerpc/score603e/PCI_bus/universe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/powerpc/score603e/PCI_bus/universe.c b/c/src/lib/libbsp/powerpc/score603e/PCI_bus/universe.c
index 223fa40d30..fb8dcc45eb 100644
--- a/c/src/lib/libbsp/powerpc/score603e/PCI_bus/universe.c
+++ b/c/src/lib/libbsp/powerpc/score603e/PCI_bus/universe.c
@@ -9,6 +9,8 @@
#include <rtems.h>
#include <assert.h>
#include <stdio.h>
+#include <inttypes.h>
+#include <rtems/bspIo.h>
#include <bsp.h>
#include "PCI.h"
@@ -175,7 +177,7 @@ void initialize_universe()
* compare to known ID
*/
if (pci_id != SCORE603E_UNIVERSE_CHIP_ID ){
- DEBUG_puts ("Invalid SCORE603E_UNIVERSE_CHIP_ID: ");
+ printk ("Invalid SCORE603E_UNIVERSE_CHIP_ID: 0x08%" PRId32 "\n", pci_id);
rtems_fatal_error_occurred( 0x603e0bad );
}