summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libfs/src/imfs/deviceerrno.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index b44370da7c..1f24da9265 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2011-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * libfs/src/imfs/deviceerrno.c: Add RTEMS_INVALID_CLOCK,
+ RTEMS_INVALID_NODE, and RTEMS_NOT_CONFIGURED.
+
+2011-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>
+
PR 1762/cpukit
* Makefile.am, preinstall.am, libmisc/Makefile.am, wrapup/Makefile.am:
Add generic serial mouse driver and mouse parser. The parser code was
diff --git a/cpukit/libfs/src/imfs/deviceerrno.c b/cpukit/libfs/src/imfs/deviceerrno.c
index b0daf4d8f8..396df7619d 100644
--- a/cpukit/libfs/src/imfs/deviceerrno.c
+++ b/cpukit/libfs/src/imfs/deviceerrno.c
@@ -44,6 +44,9 @@ static const int status_code_to_errno [RTEMS_STATUS_CODES_LAST + 1] = {
[RTEMS_ILLEGAL_ON_REMOTE_OBJECT] = EIO,
[RTEMS_CALLED_FROM_ISR] = EIO,
[RTEMS_INVALID_PRIORITY] = EIO,
+ [RTEMS_INVALID_CLOCK] = EINVAL,
+ [RTEMS_INVALID_NODE] = EINVAL,
+ [RTEMS_NOT_CONFIGURED] = ENOSYS,
[RTEMS_NOT_OWNER_OF_RESOURCE] = EPERM,
[RTEMS_NOT_IMPLEMENTED] = ENOSYS,
[RTEMS_INTERNAL_ERROR] = EIO,