HV:fix MACRO value mismatch

The commit id "c5f4c5" translats from enum to macro, the content
is not correct,fixed now.

Tracked-On: #1553
Signed-off-by: Huihuang Shi <huihuang.shi@intel.com>
Reviewed-by: Zhi Jin <zhi.jin@intel.com>
This commit is contained in:
Huihuang Shi 2018-10-22 13:32:32 +08:00 committed by Xie, Nanlin
parent a853c05546
commit 107eaa3ab0
1 changed files with 5 additions and 6 deletions

View File

@ -20,12 +20,11 @@ enum {
HV_NPK_LOG_CMD_QUERY,
};
#define HV_NPK_LOG_RES_INVALID 0x1U
#define HV_NPK_LOG_RES_OK 0x2U
#define HV_NPK_LOG_RES_KO 0x3U
#define HV_NPK_LOG_RES_ENABLED 0x4U
#define HV_NPK_LOG_RES_DISABLED 0x5U
#define HV_NPK_LOG_RES_INVALID 0x0U
#define HV_NPK_LOG_RES_OK 0x1U
#define HV_NPK_LOG_RES_KO 0x2U
#define HV_NPK_LOG_RES_ENABLED 0x3U
#define HV_NPK_LOG_RES_DISABLED 0x4U
struct hv_npk_log_param;