]> git.ipfire.org Git - people/ms/linux.git/commitdiff
NFC: st21nfcb: Fix scripts/checkpatch.pl error "code indent should use tabs where...
authorChristophe Ricard <christophe.ricard@gmail.com>
Mon, 28 Jul 2014 16:11:32 +0000 (18:11 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Sun, 7 Sep 2014 21:56:47 +0000 (23:56 +0200)
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: Christophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/nfc/st21nfcb/i2c.c

index 8af880ead5db3f1b558aaa1ff28ac38c1b1e078c..5a166cde35bc39f9c006eadea0fdb2a0e77b499e 100644 (file)
@@ -235,7 +235,7 @@ static irqreturn_t st21nfcb_nci_irq_thread_fn(int irq, void *phy_id)
        r = st21nfcb_nci_i2c_read(phy, &skb);
        if (r == -EREMOTEIO) {
                phy->hard_fault = r;
-                ndlc_recv(phy->ndlc, NULL);
+               ndlc_recv(phy->ndlc, NULL);
                return IRQ_HANDLED;
        } else if (r == -ENOMEM || r == -EBADMSG) {
                return IRQ_HANDLED;