Commit 361325e2 authored by Christophe Ricard's avatar Christophe Ricard Committed by Samuel Ortiz

NFC: st21nfcb: Fix scripts/checkpatch.pl error "code indent should use tabs where possible"

Fixing scripts/checkpatch.pl error "code indent should use tabs where possible" in:
- i2c.c in st21nfcb_nci_irq_thread_fn function.
Signed-off-by: default avatarChristophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 3e6df919
...@@ -235,7 +235,7 @@ static irqreturn_t st21nfcb_nci_irq_thread_fn(int irq, void *phy_id) ...@@ -235,7 +235,7 @@ static irqreturn_t st21nfcb_nci_irq_thread_fn(int irq, void *phy_id)
r = st21nfcb_nci_i2c_read(phy, &skb); r = st21nfcb_nci_i2c_read(phy, &skb);
if (r == -EREMOTEIO) { if (r == -EREMOTEIO) {
phy->hard_fault = r; phy->hard_fault = r;
ndlc_recv(phy->ndlc, NULL); ndlc_recv(phy->ndlc, NULL);
return IRQ_HANDLED; return IRQ_HANDLED;
} else if (r == -ENOMEM || r == -EBADMSG) { } else if (r == -ENOMEM || r == -EBADMSG) {
return IRQ_HANDLED; return IRQ_HANDLED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment