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

Commit cdc7a0e0 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

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

parents 05a56a81 bd9bea63
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;