]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - net/tipc/node.c
tipc: Optimize tipc_node_has_active_links()
[mv-sheeva.git] / net / tipc / node.c
index b634942caba5d5ed9204269c327b9fa6fef4512f..9408517976158b4a1c3e2b29c46a6b9727efcdc8 100644 (file)
@@ -237,8 +237,7 @@ void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr)
 
 int tipc_node_has_active_links(struct tipc_node *n_ptr)
 {
-       return (n_ptr &&
-               ((n_ptr->active_links[0]) || (n_ptr->active_links[1])));
+       return n_ptr->active_links[0] != NULL;
 }
 
 int tipc_node_has_redundant_links(struct tipc_node *n_ptr)