From 3972085dbab9b05e839b2612abf625c6097a180b Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 13 Oct 2020 13:47:06 +0200 Subject: Remove *_Is_null() inline functions Simply compare the values against NULL. --- cpukit/include/rtems/chain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/include/rtems/chain.h') diff --git a/cpukit/include/rtems/chain.h b/cpukit/include/rtems/chain.h index 11ebdca322..25ea0b23b7 100644 --- a/cpukit/include/rtems/chain.h +++ b/cpukit/include/rtems/chain.h @@ -234,7 +234,7 @@ RTEMS_INLINE_ROUTINE bool rtems_chain_is_null_node( const rtems_chain_node *the_node ) { - return _Chain_Is_null_node( the_node ); + return the_node == NULL; } /** -- cgit v1.2.3