Skip to content

Commit

Permalink
rpmsg: qcom_smd: Fix irq_of_parse_and_map() return value
Browse files Browse the repository at this point in the history
The irq_of_parse_and_map() returns 0 on failure, not a negative ERRNO.

Fixes: 53e2822 ("rpmsg: Introduce Qualcomm SMD backend")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220422105326.78713-1-krzysztof.kozlowski@linaro.org
  • Loading branch information
krzk authored and andersson committed Apr 22, 2022
1 parent ce522ba commit 1a358d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/rpmsg/qcom_smd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ static int qcom_smd_parse_edge(struct device *dev,
edge->name = node->name;

irq = irq_of_parse_and_map(node, 0);
if (irq < 0) {
if (!irq) {
dev_err(dev, "required smd interrupt missing\n");
ret = irq;
goto put_node;
Expand Down

0 comments on commit 1a358d3

Please sign in to comment.