Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcc95685 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "clk: msm: gcc: Move emac rx clock from branch to gate clock"

parents 28d9a3f3 62e6be99
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1370,13 +1370,13 @@ static struct branch_clk gcc_emac_0_tx_clk = {
	},
};

static struct branch_clk gcc_emac_0_rx_clk = {
	.cbcr_reg = EMAC_0_RX_CBCR,
	.has_sibling = 0,
static struct gate_clk gcc_emac_0_rx_clk = {
	.en_reg = EMAC_0_RX_CBCR,
	.en_mask = BIT(0),
	.base = &virt_bases[GCC_BASE],
	.c = {
		.dbg_name = "gcc_emac_0_rx_clk",
		.ops = &clk_ops_branch,
		.ops = &clk_ops_gate,
		CLK_INIT(gcc_emac_0_rx_clk.c),
	},
};