From 4a6ad304402a8163d7e8898ffa09896a9c3f44ab Mon Sep 17 00:00:00 2001 From: Galen Shipman Date: Fri, 12 Jan 2007 23:17:17 +0000 Subject: [PATCH] remove unused macro calls.. This commit was SVN r13107. --- ompi/mca/btl/openib/btl_openib_frag.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/ompi/mca/btl/openib/btl_openib_frag.h b/ompi/mca/btl/openib/btl_openib_frag.h index 58f01d21a6..c0e0377f02 100644 --- a/ompi/mca/btl/openib/btl_openib_frag.h +++ b/ompi/mca/btl/openib/btl_openib_frag.h @@ -141,13 +141,11 @@ typedef struct mca_btl_openib_rdma_credits_header_t mca_btl_openib_rdma_credits_ #define BTL_OPENIB_RDMA_CREDITS_HEADER_HTON(h) \ do { \ - /* BTL_OPENIB_CONTROL_HEADER_HTON(h.control); */ \ h.rdma_credits = htons(h.rdma_credits); \ } while (0) #define BTL_OPENIB_RDMA_CREDITS_HEADER_NTOH(h) \ do { \ - /* BTL_OPENIB_CONTROL_HEADER_NTOH(h.control); */ \ h.rdma_credits = ntohs(h.rdma_credits); \ } while (0)