[PATCH v3 3/5] staging: mt7621-spi: Use tabs for indentation instead of spaces.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : code indent should use tabs where possible Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v3 3/5] staging: mt7621-spi: Use tabs for indentation instead of spaces.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : code indent should use tabs where possible Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v3 5/5] staging: mt7621-spi: Remove unnecessary braces {} from single statement if block.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : braces {} are not necessary for single statement blocks Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c

[PATCH v3 4/5] staging: mt7621-spi: Add a space before open paranthesis.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : space required before the open parenthesis Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v3 5/5] staging: mt7621-spi: Remove unnecessary braces {} from single statement if block.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : braces {} are not necessary for single statement blocks Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c

[PATCH v3 4/5] staging: mt7621-spi: Add a space before open paranthesis.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : space required before the open parenthesis Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v3 2/5] staging: mt7621-spi: Fix line over 80 characters by refactoring.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : line over 80 characters Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621-spi

[PATCH v3 0/5] staging: mt7621-spi: Fix C Coding style issues.

2018-06-02 Thread Sankalp Negi
open paranthesis in switch. 5. Remove unnecessary braces {} from single statement if block. version 2 changes - segregated changes in individual commits as per fix category. version 3 changes - added unique subjects for each patch in the series. Sankalp Negi (5): staging: mt7621-spi: Indent case

[PATCH v3 1/5] staging: mt7621-spi: Indent case labels and switch at the same level.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : switch and case should be at the same indent Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi

[PATCH v3 2/5] staging: mt7621-spi: Fix line over 80 characters by refactoring.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : line over 80 characters Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621-spi

[PATCH v3 0/5] staging: mt7621-spi: Fix C Coding style issues.

2018-06-02 Thread Sankalp Negi
open paranthesis in switch. 5. Remove unnecessary braces {} from single statement if block. version 2 changes - segregated changes in individual commits as per fix category. version 3 changes - added unique subjects for each patch in the series. Sankalp Negi (5): staging: mt7621-spi: Indent case

[PATCH v3 1/5] staging: mt7621-spi: Indent case labels and switch at the same level.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : switch and case should be at the same indent Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi

[PATCH v2 2/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : line over 80 characters Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621-spi

[PATCH v2 2/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : line over 80 characters Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621-spi

[PATCH v2 4/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : space required before the open parenthesis Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v2 3/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : code indent should use tabs where possible Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v2 4/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : space required before the open parenthesis Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v2 3/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : code indent should use tabs where possible Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers

[PATCH v2 5/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : braces {} are not necessary for single statement blocks Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c

[PATCH v2 5/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: WARNING : braces {} are not necessary for single statement blocks Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c

[PATCH v2 1/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : switch and case should be at the same indent Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi

[PATCH v2 1/5] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-06-02 Thread Sankalp Negi
The patch fixes following checkpatch.pl issue: ERROR : switch and case should be at the same indent Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi

[PATCH v2 0/5] staging: mt7621-spi: Fix Coding style issues.

2018-06-02 Thread Sankalp Negi
in switch 5. Remove unnecessary braces {} from single statement if version 2 changes - segregated changes in individual commits as per fix category Sankalp Negi (5): staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl. staging: mt7621-spi: Fix Coding style issues reported

[PATCH v2 0/5] staging: mt7621-spi: Fix Coding style issues.

2018-06-02 Thread Sankalp Negi
in switch 5. Remove unnecessary braces {} from single statement if version 2 changes - segregated changes in individual commits as per fix category Sankalp Negi (5): staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl. staging: mt7621-spi: Fix Coding style issues reported

[PATCH] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-05-31 Thread Sankalp Negi
: braces {} are not necessary for single statement blocks Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621

[PATCH] staging: mt7621-spi: Fix Coding style issues reported by checkpatch.pl.

2018-05-31 Thread Sankalp Negi
: braces {} are not necessary for single statement blocks Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-spi/spi-mt7621.c | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621

[PATCH v2] staging: mt7621-mmc: Fix line size exceeding 80 columns

2018-05-30 Thread Sankalp Negi
This patch fixes checkpatch.pl warning and check: WARNING: line over 80 characters CHECK: Alignment should match open parenthesis Signed-off-by: Sankalp Negi --- Changes in v2: - Made alignments to match open parenthesis. --- drivers/staging/mt7621-mmc/dbg.c | 3 ++- 1 file changed, 2

[PATCH v2] staging: mt7621-mmc: Fix line size exceeding 80 columns

2018-05-30 Thread Sankalp Negi
This patch fixes checkpatch.pl warning and check: WARNING: line over 80 characters CHECK: Alignment should match open parenthesis Signed-off-by: Sankalp Negi --- Changes in v2: - Made alignments to match open parenthesis. --- drivers/staging/mt7621-mmc/dbg.c | 3 ++- 1 file changed, 2

[no subject]

2018-05-30 Thread Sankalp Negi
unsubscribe linux-kernel

[no subject]

2018-05-30 Thread Sankalp Negi
unsubscribe linux-kernel

[PATCH] staging: mt7621-mmc: Fix line size exceeding 80 columns.

2018-05-29 Thread Sankalp Negi
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-mmc/dbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-mmc/dbg.c b/drivers/staging/mt7621-mmc/dbg.c index

[PATCH] staging: mt7621-mmc: Fix line size exceeding 80 columns.

2018-05-29 Thread Sankalp Negi
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-mmc/dbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-mmc/dbg.c b/drivers/staging/mt7621-mmc/dbg.c index

[PATCH] staging: mt7621-pci: Fix line size exceeding 80 columns.

2018-05-27 Thread Sankalp Negi
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Sankalp Negi <sankalpnegi2...@gmail.com> --- drivers/staging/mt7621-pci/pci-mt7621.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-pci/pci-mt762

[PATCH] staging: mt7621-pci: Fix line size exceeding 80 columns.

2018-05-27 Thread Sankalp Negi
This patch fixes the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Sankalp Negi --- drivers/staging/mt7621-pci/pci-mt7621.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/mt7621-pci/pci-mt7621.c b/drivers/staging/mt7621-pci/pci