Skip to content

Commit ba34f97

Browse files
Sibi Sankarandersson
authored andcommitted
soc: qcom: apr: Fixup the error displayed on lookup failure
APR client incorrectly prints out "ret" variable on pdr_add_lookup failure, it should be printing the error value returned by the lookup instead. Fixes: 8347356 ("soc: qcom: apr: Add avs/audio tracking functionality") Signed-off-by: Sibi Sankar <sibis@codeaurora.org> Link: https://lore.kernel.org/r/20200915154232.27523-1-sibis@codeaurora.org Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
1 parent a32a43e commit ba34f97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/soc/qcom/apr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ static int of_apr_add_pd_lookups(struct device *dev)
328328

329329
pds = pdr_add_lookup(apr->pdr, service_name, service_path);
330330
if (IS_ERR(pds) && PTR_ERR(pds) != -EALREADY) {
331-
dev_err(dev, "pdr add lookup failed: %d\n", ret);
331+
dev_err(dev, "pdr add lookup failed: %ld\n", PTR_ERR(pds));
332332
return PTR_ERR(pds);
333333
}
334334
}

0 commit comments

Comments
 (0)