Skip to content

Commit 000636d

Browse files
Mukesh Ojhaandersson
authored andcommitted
firmware: qcom: scm: Remove redundant scm argument from qcom_scm_waitq_wakeup()
Remove redundant scm argument from qcom_scm_waitq_wakeup(). Signed-off-by: Mukesh Ojha <[email protected]> Reviewed-by: Konrad Dybcio <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bjorn Andersson <[email protected]>
1 parent 3de990f commit 000636d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/firmware/qcom/qcom_scm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,7 +1771,7 @@ int qcom_scm_wait_for_wq_completion(u32 wq_ctx)
17711771
return 0;
17721772
}
17731773

1774-
static int qcom_scm_waitq_wakeup(struct qcom_scm *scm, unsigned int wq_ctx)
1774+
static int qcom_scm_waitq_wakeup(unsigned int wq_ctx)
17751775
{
17761776
int ret;
17771777

@@ -1803,7 +1803,7 @@ static irqreturn_t qcom_scm_irq_handler(int irq, void *data)
18031803
goto out;
18041804
}
18051805

1806-
ret = qcom_scm_waitq_wakeup(scm, wq_ctx);
1806+
ret = qcom_scm_waitq_wakeup(wq_ctx);
18071807
if (ret)
18081808
goto out;
18091809
} while (more_pending);

0 commit comments

Comments
 (0)