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

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

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

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

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

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