コード例 #1
0
ファイル: ccu_div.c プロジェクト: AK101111/linux
static int ccu_div_enable(struct clk_hw *hw)
{
	struct ccu_div *cd = hw_to_ccu_div(hw);

	return ccu_gate_helper_enable(&cd->common, cd->enable);
}
コード例 #2
0
ファイル: ccu_mp.c プロジェクト: BWhitten/linux-stable
static int ccu_mp_enable(struct clk_hw *hw)
{
	struct ccu_mp *cmp = hw_to_ccu_mp(hw);

	return ccu_gate_helper_enable(&cmp->common, cmp->enable);
}
コード例 #3
0
ファイル: ccu_mult.c プロジェクト: avagin/linux
static int ccu_mult_enable(struct clk_hw *hw)
{
	struct ccu_mult *cm = hw_to_ccu_mult(hw);

	return ccu_gate_helper_enable(&cm->common, cm->enable);
}
コード例 #4
0
ファイル: ccu_nk.c プロジェクト: TheDarkCode/linux
static int ccu_nk_enable(struct clk_hw *hw)
{
	struct ccu_nk *nk = hw_to_ccu_nk(hw);

	return ccu_gate_helper_enable(&nk->common, nk->enable);
}
コード例 #5
0
ファイル: ccu_nm.c プロジェクト: JamesChenFromChina/linux
static int ccu_nm_enable(struct clk_hw *hw)
{
	struct ccu_nm *nm = hw_to_ccu_nm(hw);

	return ccu_gate_helper_enable(&nm->common, nm->enable);
}