From ff71b7d8dc0b4a22853697b394d2bc8684eaccb9 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sat, 19 Jun 2010 20:55:30 +0000 Subject: [PATCH] 2010-06-19 Joel Sherrill * psxfatal_support/init.c: Remove references to ITRON constants. --- testsuites/psxtests/ChangeLog | 4 ++++ testsuites/psxtests/psxfatal_support/init.c | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/testsuites/psxtests/ChangeLog b/testsuites/psxtests/ChangeLog index f5aa10a280..4b54eff7e1 100644 --- a/testsuites/psxtests/ChangeLog +++ b/testsuites/psxtests/ChangeLog @@ -1,3 +1,7 @@ +2010-06-19 Joel Sherrill + + * psxfatal_support/init.c: Remove references to ITRON constants. + 2010-06-08 Sebastian Huber * psxfile01/test.c: Update for IMFS API changes. diff --git a/testsuites/psxtests/psxfatal_support/init.c b/testsuites/psxtests/psxfatal_support/init.c index ea1559c920..a14a1dd398 100644 --- a/testsuites/psxtests/psxfatal_support/init.c +++ b/testsuites/psxtests/psxfatal_support/init.c @@ -37,7 +37,6 @@ char *Sources[] = { "INTERNAL_ERROR_CORE", "INTERNAL_ERROR_RTEMS_API", "INTERNAL_ERROR_POSIX_API", - "INTERNAL_ERROR_ITRON_API" }; char *Errors_Rtems[] = { @@ -112,7 +111,7 @@ void Put_Error( uint32_t source, uint32_t error ) void Put_Source( uint32_t source ) { - if ( source > INTERNAL_ERROR_ITRON_API ) + if ( source > INTERNAL_ERROR_POSIX_API ) printk("Unknown Source (%d)", source); else printk( Sources[ source ] );