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

Commit 12bb68ed authored by Charles Keepax's avatar Charles Keepax Committed by Samuel Ortiz
Browse files

mfd: wm5102: Deactivate standard boot sequence



This patch deactivates the standard, currently noop, boot sequence
because we now have facilities in place for running a custom boot
sequence.

Signed-off-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent e80436bb
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -342,11 +342,6 @@ static int arizona_runtime_resume(struct device *dev)

	regcache_cache_only(arizona->regmap, false);

	ret = arizona_wait_for_boot(arizona);
	if (ret != 0) {
		goto err;
	}

	switch (arizona->type) {
	case WM5102:
		ret = wm5102_patch(arizona);
@@ -365,6 +360,11 @@ static int arizona_runtime_resume(struct device *dev)
		}
		break;
	default:
		ret = arizona_wait_for_boot(arizona);
		if (ret != 0) {
			goto err;
		}

		break;
	}