aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwengjianfeng <[email protected]>2021-11-26 09:31:30 +0800
committerJakub Kicinski <[email protected]>2021-11-26 11:22:14 -0800
commitaf22d0550705dcb4142362b232f972bfab486b89 (patch)
treeacf15364b22941c2ff4cf046567f24b0d8d8923c
parent35bf8c86eeb8ae609f61c43aeab3b530fedcf1b4 (diff)
nfc: fdp: Merge the same judgment
Combine two judgments that return the same value Signed-off-by: wengjianfeng <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r--drivers/nfc/fdp/i2c.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/nfc/fdp/i2c.c b/drivers/nfc/fdp/i2c.c
index f78670bf41e0..28a9e1eb9bcf 100644
--- a/drivers/nfc/fdp/i2c.c
+++ b/drivers/nfc/fdp/i2c.c
@@ -205,9 +205,7 @@ static irqreturn_t fdp_nci_i2c_irq_thread_fn(int irq, void *phy_id)
r = fdp_nci_i2c_read(phy, &skb);
- if (r == -EREMOTEIO)
- return IRQ_HANDLED;
- else if (r == -ENOMEM || r == -EBADMSG)
+ if (r == -EREMOTEIO || r == -ENOMEM || r == -EBADMSG)
return IRQ_HANDLED;
if (skb != NULL)