HV:header:fix "expression is not Boolean"

MISRA C explicit required expression should be boolean when
in branch statements (if,while...).

Signed-off-by: Huihuang Shi <huihuang.shi@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Huihuang Shi
2018-06-19 14:06:47 +08:00
committed by lijinxia
parent e3174bb50a
commit fe0314e8c3
5 changed files with 10 additions and 10 deletions

View File

@@ -38,7 +38,7 @@ static inline void initialize_timer(struct timer *timer,
int mode,
uint64_t period_in_cycle)
{
if (timer) {
if (timer != NULL) {
timer->func = func;
timer->priv_data = priv_data;
timer->fire_tsc = fire_tsc;