Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1640706

[PATCH v2 1/2] staging: ccree: switch spaces to tabs

From Connor Kelleher <connor.r.kelleher@gmail.com>
Newsgroups linux.kernel
Subject [PATCH v2 1/2] staging: ccree: switch spaces to tabs
Date 2017-05-12 21:20 +0200
Message-ID <tGogy-Kn-13@gated-at.bofh.it> (permalink)
References <tGeKe-2eI-23@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


ssi_fips.c:

fixing checkpatch.pl errors:

ERROR: code indent should use tabs where possible
+        int rc = 0;$

ERROR: code indent should use tabs where possible
+        int rc = 0;$

Signed-off-by: Connor Kelleher <connor.r.kelleher@gmail.com>
---
 drivers/staging/ccree/ssi_fips.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/ccree/ssi_fips.c b/drivers/staging/ccree/ssi_fips.c
index 50f748511979..11a463f5e33c 100644
--- a/drivers/staging/ccree/ssi_fips.c
+++ b/drivers/staging/ccree/ssi_fips.c
@@ -32,7 +32,7 @@ It should be called by kernel module.
 */
 int ssi_fips_get_state(ssi_fips_state_t *p_state)
 {
-        int rc = 0;
+	int rc = 0;
 
 	if (p_state == NULL) {
 		return -EINVAL;
@@ -51,7 +51,7 @@ It should be called by kernel module.
 */
 int ssi_fips_get_error(ssi_fips_error_t *p_err)
 {
-        int rc = 0;
+	int rc = 0;
 
 	if (p_err == NULL) {
 		return -EINVAL;
-- 
2.11.0

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [PATCH] staging: ccree: remove trailing whitespace. switch  spaces to tabs Greg KH <gregkh@linuxfoundation.org> - 2017-05-12 11:10 +0200
  [PATCH v2 1/2] staging: ccree: switch spaces to tabs Connor Kelleher <connor.r.kelleher@gmail.com> - 2017-05-12 21:20 +0200
    [PATCH v2 2/2] staging: ccree: remove trailing whitespace Connor Kelleher <connor.r.kelleher@gmail.com> - 2017-05-12 21:20 +0200

csiph-web