summaryrefslogtreecommitdiffstats
path: root/drivers/soc/qcom
diff options
context:
space:
mode:
authorArun Kumar Neelakantam <aneela@codeaurora.org>2020-01-22 13:53:37 +0530
committerBjorn Andersson <bjorn.andersson@linaro.org>2020-02-13 21:18:14 -0800
commitdf636eea2b782589fad7fce3bfea26c6c31e4d14 (patch)
treebf8974381edf5acf627224e7858f9d0ef2142490 /drivers/soc/qcom
parentd5e205079c34aa1f33157627814f707d6057727a (diff)
downloadlinux-stable-df636eea2b782589fad7fce3bfea26c6c31e4d14.tar.gz
linux-stable-df636eea2b782589fad7fce3bfea26c6c31e4d14.tar.bz2
linux-stable-df636eea2b782589fad7fce3bfea26c6c31e4d14.zip
soc: qcom: aoss: Use wake_up_all() instead of wake_up_interruptible_all()
During the probe the task is waiting in TASK_UNINTERRUPTIBLE state which cannot be woken-up by wake_up_interruptible_all() function. Use wake_up_all() to wake-up both TASK_UNINTERRUPTIBLE and TASK_INTERRUPTIBLE state tasks. Signed-off-by: Arun Kumar Neelakantam <aneela@codeaurora.org> Link: https://lore.kernel.org/r/1579681417-1155-1-git-send-email-aneela@codeaurora.org Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/soc/qcom')
-rw-r--r--drivers/soc/qcom/qcom_aoss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/qcom_aoss.c b/drivers/soc/qcom/qcom_aoss.c
index 006ac40c526a..fe79661d28cb 100644
--- a/drivers/soc/qcom/qcom_aoss.c
+++ b/drivers/soc/qcom/qcom_aoss.c
@@ -200,7 +200,7 @@ static irqreturn_t qmp_intr(int irq, void *data)
{
struct qmp *qmp = data;
- wake_up_interruptible_all(&qmp->event);
+ wake_up_all(&qmp->event);
return IRQ_HANDLED;
}