2018-05-29 17:40:22

by Sankalp Negi

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

This patch fixes the checkpatch.pl warning:

WARNING: line over 80 characters

Signed-off-by: Sankalp Negi <[email protected]>
---
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 d897b1216348..0b007e060ddc 100644
--- a/drivers/staging/mt7621-mmc/dbg.c
+++ b/drivers/staging/mt7621-mmc/dbg.c
@@ -229,7 +229,7 @@ static int msdc_debug_proc_read(struct seq_file *s, void *p)
}

static ssize_t msdc_debug_proc_write(struct file *file,
- const char __user *buf, size_t count, loff_t *data)
+ const char __user *buf, size_t count, loff_t *data)
{
int ret;

--
2.11.0



2018-05-29 21:57:54

by NeilBrown

[permalink] [raw]
Subject: Re: [PATCH] staging: mt7621-mmc: Fix line size exceeding 80 columns.

On Tue, May 29 2018, Sankalp Negi wrote:

> This patch fixes the checkpatch.pl warning:
>
> WARNING: line over 80 characters
>
> Signed-off-by: Sankalp Negi <[email protected]>
> ---
> 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 d897b1216348..0b007e060ddc 100644
> --- a/drivers/staging/mt7621-mmc/dbg.c
> +++ b/drivers/staging/mt7621-mmc/dbg.c
> @@ -229,7 +229,7 @@ static int msdc_debug_proc_read(struct seq_file *s, void *p)
> }
>
> static ssize_t msdc_debug_proc_write(struct file *file,
> - const char __user *buf, size_t count, loff_t *data)
> + const char __user *buf, size_t count, loff_t *data)

Thanks, but .... not like this please.
The code inside () should never be indented before the '(' unless the
'(' is at the end of a line.
So you could make it

static ssize_t msdc_debug_proc_write(struct file *file, const char __user *buf,
size_t count, loff_t *data)

or

static ssize_t
msdc_debug_proc_write(struct file *file, const char __user *buf, size_t count,
loff_t *data)

or even

static ssize_t msdc_debug_proc_write(
struct file *file, const char __user *buf, size_t count, loff_t *data)

(though I don't think checkpatch will like that).
But neither the original or your new version are indented properly.
Try to do more than just remove the warnings - try to make the code
beautiful!

Thanks,
NeilBrown

> {
> int ret;
>
> --
> 2.11.0


Attachments:
signature.asc (847.00 B)

2018-05-30 19:06:11

by Sankalp Negi

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

This patch fixes checkpatch.pl warning and check:
WARNING: line over 80 characters
CHECK: Alignment should match open parenthesis

Signed-off-by: Sankalp Negi <[email protected]>
---
Changes in v2:
- Made alignments to match open parenthesis.
---
drivers/staging/mt7621-mmc/dbg.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/mt7621-mmc/dbg.c b/drivers/staging/mt7621-mmc/dbg.c
index d897b1216348..6e4e223cddfb 100644
--- a/drivers/staging/mt7621-mmc/dbg.c
+++ b/drivers/staging/mt7621-mmc/dbg.c
@@ -229,7 +229,8 @@ static int msdc_debug_proc_read(struct seq_file *s, void *p)
}

static ssize_t msdc_debug_proc_write(struct file *file,
- const char __user *buf, size_t count, loff_t *data)
+ const char __user *buf,
+ size_t count, loff_t *data)
{
int ret;

--
2.11.0


2018-05-30 22:09:52

by NeilBrown

[permalink] [raw]
Subject: Re: [PATCH v2] staging: mt7621-mmc: Fix line size exceeding 80 columns

On Thu, May 31 2018, Sankalp Negi wrote:

> This patch fixes checkpatch.pl warning and check:
> WARNING: line over 80 characters
> CHECK: Alignment should match open parenthesis
>
> Signed-off-by: Sankalp Negi <[email protected]>

Reviewed-by: NeilBrown <[email protected]>

Thanks,
NeilBrown

> ---
> Changes in v2:
> - Made alignments to match open parenthesis.
> ---
> drivers/staging/mt7621-mmc/dbg.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/mt7621-mmc/dbg.c b/drivers/staging/mt7621-mmc/dbg.c
> index d897b1216348..6e4e223cddfb 100644
> --- a/drivers/staging/mt7621-mmc/dbg.c
> +++ b/drivers/staging/mt7621-mmc/dbg.c
> @@ -229,7 +229,8 @@ static int msdc_debug_proc_read(struct seq_file *s, void *p)
> }
>
> static ssize_t msdc_debug_proc_write(struct file *file,
> - const char __user *buf, size_t count, loff_t *data)
> + const char __user *buf,
> + size_t count, loff_t *data)
> {
> int ret;
>
> --
> 2.11.0


Attachments:
signature.asc (847.00 B)