Commit 5e86ccef authored by Zhi Wang's avatar Zhi Wang Committed by Zhenyu Wang
Browse files

drm/i915/gvt: Use BIT() to make klockwork happy



Replace the plain bit usage with BIT() to make klockwork happy.

Cc: Deng Hongyi <hongyi.deng@intel.com>
Signed-off-by: default avatarZhi Wang <zhi.a.wang@intel.com>
parent bc7b0be3
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -351,7 +351,7 @@ static bool gen8_gtt_test_pse(struct intel_gvt_gtt_entry *e)
		return false;
		return false;


	e->type = get_entry_type(e->type);
	e->type = get_entry_type(e->type);
	if (!(e->val64 & (1 << 7)))
	if (!(e->val64 & BIT(7)))
		return false;
		return false;


	e->type = get_pse_type(e->type);
	e->type = get_pse_type(e->type);
@@ -369,12 +369,12 @@ static bool gen8_gtt_test_present(struct intel_gvt_gtt_entry *e)
			|| e->type == GTT_TYPE_PPGTT_ROOT_L4_ENTRY)
			|| e->type == GTT_TYPE_PPGTT_ROOT_L4_ENTRY)
		return (e->val64 != 0);
		return (e->val64 != 0);
	else
	else
		return (e->val64 & (1 << 0));
		return (e->val64 & BIT(0));
}
}


static void gtt_entry_clear_present(struct intel_gvt_gtt_entry *e)
static void gtt_entry_clear_present(struct intel_gvt_gtt_entry *e)
{
{
	e->val64 &= ~(1 << 0);
	e->val64 &= ~BIT(0);
}
}


/*
/*