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

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

Merge "clk: qcom: clk-cpu-osm: Correct the per_core_dcvs logic"

parents efe55623 4020ecff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -957,11 +957,11 @@ static int clk_cpu_osm_driver_probe(struct platform_device *pdev)

	/* Check if per-core DCVS is enabled/not */
	val = clk_osm_read_reg(&pwrcl_clk, CORE_DCVS_CTRL);
	if (val && BIT(0))
	if (val & BIT(0))
		pwrcl_clk.per_core_dcvs = true;

	val = clk_osm_read_reg(&perfcl_clk, CORE_DCVS_CTRL);
	if (val && BIT(0))
	if (val & BIT(0))
		perfcl_clk.per_core_dcvs = true;

	rc = clk_osm_read_lut(pdev, &l3_clk);