mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
ebbeb55561
Also add script used to generate patches and SRC_URI Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
46 lines
1.4 KiB
Diff
46 lines
1.4 KiB
Diff
From 75d6feb2330ece547d401da6dd6f812a75728d78 Mon Sep 17 00:00:00 2001
|
|
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
Date: Tue, 13 Mar 2012 09:36:07 -0700
|
|
Subject: [PATCH 1/2] Revert "mfd: Test for jack detection when deciding if
|
|
wm8994 should suspend"
|
|
|
|
This reverts commit 315e73b400c9a287a53efb5f857d308589674ac5 as it
|
|
breaks the 3.2-stable build.
|
|
|
|
Reported-by: Ben Guthro <ben@guthro.net>
|
|
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
|
Cc: Samuel Ortiz <sameo@linux.intel.com>
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/mfd/wm8994-core.c | 14 --------------
|
|
1 file changed, 14 deletions(-)
|
|
|
|
diff --git a/drivers/mfd/wm8994-core.c b/drivers/mfd/wm8994-core.c
|
|
index 9302d21..61894fc 100644
|
|
--- a/drivers/mfd/wm8994-core.c
|
|
+++ b/drivers/mfd/wm8994-core.c
|
|
@@ -252,20 +252,6 @@ static int wm8994_suspend(struct device *dev)
|
|
break;
|
|
}
|
|
|
|
- switch (wm8994->type) {
|
|
- case WM1811:
|
|
- ret = wm8994_reg_read(wm8994, WM8994_ANTIPOP_2);
|
|
- if (ret < 0) {
|
|
- dev_err(dev, "Failed to read jackdet: %d\n", ret);
|
|
- } else if (ret & WM1811_JACKDET_MODE_MASK) {
|
|
- dev_dbg(dev, "CODEC still active, ignoring suspend\n");
|
|
- return 0;
|
|
- }
|
|
- break;
|
|
- default:
|
|
- break;
|
|
- }
|
|
-
|
|
/* Disable LDO pulldowns while the device is suspended if we
|
|
* don't know that something will be driving them. */
|
|
if (!wm8994->ldo_ena_always_driven)
|
|
--
|
|
1.7.9.4
|
|
|