From: Colin Ian King Date: Thu, 26 Sep 2019 11:13:06 +0000 (+0100) Subject: NFC: st95hf: clean up indentation issue X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6ba5bbba95f789d76ce3bf440ee02fdaf52ec486;p=linux.git NFC: st95hf: clean up indentation issue The return statement is indented incorrectly, add in a missing tab and remove an extraneous space after the return Signed-off-by: Colin Ian King Signed-off-by: David S. Miller --- diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c index 7eda62a9e0dfa..9642971e89cea 100644 --- a/drivers/nfc/st95hf/core.c +++ b/drivers/nfc/st95hf/core.c @@ -661,7 +661,7 @@ static int st95hf_error_handling(struct st95hf_context *stcontext, result = -ETIMEDOUT; else result = -EIO; - return result; + return result; } /* Check for CRC err only if CRC is present in the tag response */