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

Commit 8204f697 authored by Harry Yang's avatar Harry Yang
Browse files

qcom-charger: smblib: drop the BOOST PFM Threshold change



The original change to set 200mV boost PFM threshold at request
of a HW workaround is no longer needed, set as default now in
SBL.  Remove it.

CRs-Fixed: 1095917
Change-Id: I4e041dafa83d935a5c16c96bea7a3ea488e80d87
Signed-off-by: default avatarHarry Yang <harryy@codeaurora.org>
parent 58dac184
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -780,16 +780,6 @@ static int smblib_otg_cl_config(struct smb_charger *chg, int otg_cl_ua)
		return rc;
	}

	/* configure PFM/PWM mode for OTG regulator */
	rc = smblib_masked_write(chg, DC_ENG_SSUPPLY_CFG3_REG,
				 ENG_SSUPPLY_CFG_SKIP_TH_V0P2_BIT,
				 otg_cl_ua > MICRO_250MA ? 1 : 0);
	if (rc < 0) {
		smblib_err(chg,
			"Couldn't write DC_ENG_SSUPPLY_CFG3_REG rc=%d\n", rc);
		return rc;
	}

	return rc;
}