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

Commit 668ba6f7 authored by Amit Nischal's avatar Amit Nischal
Browse files

clk: qcom: Remove write update to EMAC_MISC register



POR value for EMAC_MISC register is zero and there is no need
to write the misc register from the HLOS clock driver for disabling
the gpll0 output so remove the write update for EMAC_MISC register.

Change-Id: I8bd2431eff2e74d44b16612f82c5ae7049aadd66
Signed-off-by: default avatarAmit Nischal <anischal@codeaurora.org>
parent 31bafe74
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -37,7 +37,6 @@
#define GCC_CAMERA_MISC		0x0b084
#define GCC_VIDEO_MISC		0x9b000
#define GCC_GPU_MISC		0x71028
#define GCC_EMAC_MISC		0x06040

#define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) }

@@ -3505,7 +3504,6 @@ static int gcc_sm6150_probe(struct platform_device *pdev)
	regmap_update_bits(regmap, GCC_DISPLAY_MISC, 0x1, 0x1);
	regmap_update_bits(regmap, GCC_CAMERA_MISC, 0x1, 0x1);
	regmap_update_bits(regmap, GCC_VIDEO_MISC, 0x1, 0x1);
	regmap_update_bits(regmap, GCC_EMAC_MISC, 0x1, 0x1);
	regmap_update_bits(regmap, GCC_GPU_MISC, 0x3, 0x3);

	ret = qcom_cc_really_probe(pdev, &gcc_sm6150_desc, regmap);