summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/assoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/include/rtems/assoc.h')
-rw-r--r--cpukit/libcsupport/include/rtems/assoc.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/cpukit/libcsupport/include/rtems/assoc.h b/cpukit/libcsupport/include/rtems/assoc.h
index 9cf343fc27..7fe7a23301 100644
--- a/cpukit/libcsupport/include/rtems/assoc.h
+++ b/cpukit/libcsupport/include/rtems/assoc.h
@@ -15,7 +15,7 @@
#define _RTEMS_RTEMS_ASSOC_H
typedef struct {
- const char *name;
+ const char *name;
uint32_t local_value;
uint32_t remote_value;
} rtems_assoc_t;
@@ -31,11 +31,6 @@ const rtems_assoc_t *rtems_assoc_ptr_by_name(
const char *
);
-const rtems_assoc_t *rtems_assoc_ptr_by_value(
- const rtems_assoc_t *,
- uint32_t
-);
-
const rtems_assoc_t *rtems_assoc_ptr_by_remote(
const rtems_assoc_t *,
uint32_t
@@ -53,10 +48,12 @@ uint32_t rtems_assoc_local_by_remote(
uint32_t rtems_assoc_remote_by_name(
const rtems_assoc_t *,
- const char *);
+ const char *
+);
uint32_t rtems_assoc_local_by_name(
const rtems_assoc_t *,
- const char *);
+ const char *
+);
const char *rtems_assoc_name_by_local(
const rtems_assoc_t *,