From: Maher Sanalla <msanalla@xxxxxxxxxx> Replace the usage of ccan bitmap with the newly added bitmap implementation in util. Signed-off-by: Maher Sanalla <msanalla@xxxxxxxxxx> Reviewed-by: Avihai Horon <avihaih@xxxxxxxxxx> Signed-off-by: Yishai Hadas <yishaih@xxxxxxxxxx> --- libibverbs/ibverbs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libibverbs/ibverbs.h b/libibverbs/ibverbs.h index 5e60ace..33f83a7 100644 --- a/libibverbs/ibverbs.h +++ b/libibverbs/ibverbs.h @@ -37,7 +37,7 @@ #include <pthread.h> #include <infiniband/driver.h> -#include <ccan/bitmap.h> +#include <util/bitmap.h> #define INIT __attribute__((constructor)) @@ -70,7 +70,7 @@ void load_drivers(void); #endif struct verbs_ex_private { - BITMAP_DECLARE(unsupported_ioctls, VERBS_OPS_NUM); + BMP_DECLARE(unsupported_ioctls, VERBS_OPS_NUM); uint32_t driver_id; bool use_ioctl_write; struct verbs_context_ops ops; -- 1.8.3.1