From fff345b145db95e9537a6ff070847377fb92a9e5 Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Wed, 20 Jul 2022 01:03:10 +0000 Subject: [PATCH] vmd: rename internal header file to vmd_internal.h This avoids conflict with public vmd.h header which can cause problems with abidiff. Signed-off-by: Jim Harris Change-Id: I2f00c07226dec273516868f5fa9d7aa384378308 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13731 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins Reviewed-by: Ben Walker Reviewed-by: Changpeng Liu Reviewed-by: Konrad Sztyber --- lib/vmd/led.c | 2 +- lib/vmd/vmd.c | 2 +- lib/vmd/{vmd.h => vmd_internal.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename lib/vmd/{vmd.h => vmd_internal.h} (100%) diff --git a/lib/vmd/led.c b/lib/vmd/led.c index 01265fb82..cb920c9b8 100644 --- a/lib/vmd/led.c +++ b/lib/vmd/led.c @@ -6,7 +6,7 @@ #include "spdk/stdinc.h" #include "spdk/likely.h" #include "spdk/log.h" -#include "vmd.h" +#include "vmd_internal.h" struct vmd_led_indicator_config { uint8_t attention_indicator : 2; diff --git a/lib/vmd/vmd.c b/lib/vmd/vmd.c index dd6278d78..7a2f05219 100644 --- a/lib/vmd/vmd.c +++ b/lib/vmd/vmd.c @@ -3,7 +3,7 @@ * All rights reserved. */ -#include "vmd.h" +#include "vmd_internal.h" #include "spdk/stdinc.h" #include "spdk/likely.h" diff --git a/lib/vmd/vmd.h b/lib/vmd/vmd_internal.h similarity index 100% rename from lib/vmd/vmd.h rename to lib/vmd/vmd_internal.h