summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/partimpl.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/partimpl.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/partimpl.h b/cpukit/rtems/include/rtems/rtems/partimpl.h
index 0ce7622a7a..ea791559d1 100644
--- a/cpukit/rtems/include/rtems/rtems/partimpl.h
+++ b/cpukit/rtems/include/rtems/rtems/partimpl.h
@@ -181,17 +181,15 @@ RTEMS_INLINE_ROUTINE void _Partition_Free (
_Objects_Free( &_Partition_Information, &the_partition->Object );
}
-RTEMS_INLINE_ROUTINE Partition_Control *_Partition_Get (
+RTEMS_INLINE_ROUTINE Partition_Control *_Partition_Get(
Objects_Id id,
- Objects_Locations *location,
ISR_lock_Context *lock_context
)
{
- return (Partition_Control *) _Objects_Get_isr_disable(
- &_Partition_Information,
+ return (Partition_Control *) _Objects_Get_local(
id,
- location,
- lock_context
+ lock_context,
+ &_Partition_Information
);
}