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

Commit bd9bea63 authored by Raghavendra Rao Ananta's avatar Raghavendra Rao Ananta
Browse files

soc: qcom: eud: Fix inconsistent nature of the cmdline



The EUD driver's 'enable' command line argument is set to
EUD_ENABLE_CMD even if the bootloader hasn't enabled it,
which is not correct. Hence, update the 'enable' variable
based on the state of the hardware.

Change-Id: I1159436c0e9a803462f2154ccc05649d3f7b40da
Signed-off-by: default avatarRaghavendra Rao Ananta <rananta@codeaurora.org>
parent a63da646
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -84,11 +84,7 @@ static const unsigned int eud_extcon_cable[] = {
	EXTCON_NONE,
};

/*
 * On the kernel command line specify eud.enable=1 to enable EUD.
 * EUD is disabled by default.
 */
static int enable = EUD_ENABLE_CMD;
static int enable = EUD_DISABLE_CMD;
static bool eud_ready;
static struct platform_device *eud_private;

@@ -719,8 +715,10 @@ static int msm_eud_probe(struct platform_device *pdev)
	eud_ready = true;

	/* Proceed enable other EUD elements if bootloader has enabled it */
	if (enable && msm_eud_hw_is_enabled(pdev))
	if (msm_eud_hw_is_enabled(pdev)) {
		msm_eud_enable_irqs(chip);
		enable = EUD_ENABLE_CMD;
	}

	return 0;