From a61e221d04a1df5d113606ad2c2c978e2c578655 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 14 Oct 2020 10:26:53 +0200 Subject: rtems: Move _Partition_Is_buffer_on_boundary() It is used only by rtems_partition_return_buffer(). Make the PTCB the first parameter. Rename to _Partition_Is_address_on_buffer_boundary(). --- cpukit/include/rtems/rtems/partimpl.h | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'cpukit/include/rtems/rtems/partimpl.h') diff --git a/cpukit/include/rtems/rtems/partimpl.h b/cpukit/include/rtems/rtems/partimpl.h index 23d5422bec..0d15d1e991 100644 --- a/cpukit/include/rtems/rtems/partimpl.h +++ b/cpukit/include/rtems/rtems/partimpl.h @@ -19,7 +19,6 @@ #define _RTEMS_RTEMS_PARTIMPL_H #include -#include #include #include @@ -35,27 +34,6 @@ extern "C" { * @{ */ -/** - * @brief Checks whether is on a valid buffer boundary for the_partition. - * - * This function returns TRUE if the_buffer is on a valid buffer - * boundary for the_partition, and FALSE otherwise. - */ -RTEMS_INLINE_ROUTINE bool _Partition_Is_buffer_on_boundary ( - void *the_buffer, - Partition_Control *the_partition -) -{ - intptr_t offset; - - offset = _Addresses_Subtract( - the_buffer, - the_partition->starting_address - ); - - return ((offset % the_partition->buffer_size) == 0); -} - RTEMS_INLINE_ROUTINE bool _Partition_Is_buffer_size_aligned( uint32_t buffer_size ) -- cgit v1.2.3