Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1495594 > unrolled thread
| Started by | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| First post | 2016-10-04 23:00 +0200 |
| Last post | 2016-10-09 17:00 +0200 |
| Articles | 12 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] staging: i4l: icn: fixed some errors and warnings caught by checkpatch.pl Harman Kalra <harman4linux@gmail.com> - 2016-10-04 23:00 +0200
Re: [PATCH] staging: i4l: icn: fixed some errors and warnings caught by checkpatch.pl Greg KH <gregkh@linuxfoundation.org> - 2016-10-05 09:00 +0200
[PATCH 3/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. Harman Kalra <harman4linux@gmail.com> - 2016-10-07 19:10 +0200
Re: [PATCH 3/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. Greg KH <gregkh@linuxfoundation.org> - 2016-10-09 17:00 +0200
[PATCH 1/3] Staging: i4l: Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed Harman Kalra <harman4linux@gmail.com> - 2016-10-07 19:20 +0200
[PATCH 2/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. Harman Kalra <harman4linux@gmail.com> - 2016-10-07 19:20 +0200
Re: [PATCH 2/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. Greg KH <gregkh@linuxfoundation.org> - 2016-10-09 17:10 +0200
[PATCH 3/3] Staging: i4l: icn: Fixed open brace should be on previous line error Harman Kalra <harman4linux@gmail.com> - 2016-10-09 17:40 +0200
[PATCH 2/3] Staging: i4l: icn: prefer pr_* instead of printk Harman Kalra <harman4linux@gmail.com> - 2016-10-09 17:40 +0200
[PATCH 1/3] Staging: i4l: icn: Fixed open brace should be on previous line error Harman Kalra <harman4linux@gmail.com> - 2016-10-09 17:40 +0200
Re: [PATCH 1/3] Staging: i4l: Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed Joe Perches <joe@perches.com> - 2016-10-07 23:00 +0200
Re: [PATCH 1/3] Staging: i4l: Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed Greg KH <gregkh@linuxfoundation.org> - 2016-10-09 17:00 +0200
| From | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| Date | 2016-10-04 23:00 +0200 |
| Subject | [PATCH] staging: i4l: icn: fixed some errors and warnings caught by checkpatch.pl |
| Message-ID | <soEYF-7J5-5@gated-at.bofh.it> |
2 errors "open brace { should be on the previous line" are fixed.
Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed
Few line more tahn 80 character warnings fixed
Signed-off-by: Harman Kalra <harman4linux@gmail.com>
---
drivers/staging/i4l/icn/icn.c | 3 +--
drivers/staging/i4l/icn/icn.h | 7 ++++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/i4l/icn/icn.c b/drivers/staging/i4l/icn/icn.c
index 514bfc2..3750ba3 100644
--- a/drivers/staging/i4l/icn/icn.c
+++ b/drivers/staging/i4l/icn/icn.c
@@ -411,8 +411,7 @@
int action;
} icn_stat;
/* *INDENT-OFF* */
-static icn_stat icn_stat_table[] =
-{
+static icn_stat icn_stat_table[] = {
{"BCON_", ISDN_STAT_BCONN, 1}, /* B-Channel connected */
{"BDIS_", ISDN_STAT_BHUP, 2}, /* B-Channel disconnected */
/*
diff --git a/drivers/staging/i4l/icn/icn.h b/drivers/staging/i4l/icn/icn.h
index f8f2e76..1e5a487 100644
--- a/drivers/staging/i4l/icn/icn.h
+++ b/drivers/staging/i4l/icn/icn.h
@@ -54,7 +54,8 @@
/* some useful macros for debugging */
#ifdef ICN_DEBUG_PORT
-#define OUTB_P(v, p) {printk(KERN_DEBUG "icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p);}
+#define OUTB_P(v, p) \
+ {pr_debug("icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p); }
#else
#define OUTB_P outb
#endif
@@ -186,8 +187,8 @@
#ifdef __KERNEL__
static icn_card *cards = (icn_card *) 0;
-static u_char chan2bank[] =
-{0, 4, 8, 12}; /* for icn_map_channel() */
+static u_char chan2bank[] = {
+ 0, 4, 8, 12}; /* for icn_map_channel() */
static icn_dev dev;
--
1.7.9.5
[toc] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2016-10-05 09:00 +0200 |
| Subject | Re: [PATCH] staging: i4l: icn: fixed some errors and warnings caught by checkpatch.pl |
| Message-ID | <soOlj-5DW-7@gated-at.bofh.it> |
| In reply to | #1495594 |
On Wed, Oct 05, 2016 at 02:23:22AM +0530, Harman Kalra wrote:
> 2 errors "open brace { should be on the previous line" are fixed.
> Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed
> Few line more tahn 80 character warnings fixed
That's three different things, please make three different patches,
don't do multiple things in the same patch.
thanks,
greg k-h
[toc] | [prev] | [next] | [standalone]
| From | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| Date | 2016-10-07 19:10 +0200 |
| Subject | [PATCH 3/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. |
| Message-ID | <spGOJ-3x4-7@gated-at.bofh.it> |
| In reply to | #1495718 |
Error "open brace { should be on the previous line" caught by checkpatch.pl fixed.
Signed-off-by: Harman Kalra <harman4linux@gmail.com>
---
drivers/staging/i4l/icn/icn.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/i4l/icn/icn.c b/drivers/staging/i4l/icn/icn.c
index 514bfc2..3750ba3 100644
--- a/drivers/staging/i4l/icn/icn.c
+++ b/drivers/staging/i4l/icn/icn.c
@@ -411,8 +411,7 @@
int action;
} icn_stat;
/* *INDENT-OFF* */
-static icn_stat icn_stat_table[] =
-{
+static icn_stat icn_stat_table[] = {
{"BCON_", ISDN_STAT_BCONN, 1}, /* B-Channel connected */
{"BDIS_", ISDN_STAT_BHUP, 2}, /* B-Channel disconnected */
/*
--
1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2016-10-09 17:00 +0200 |
| Subject | Re: [PATCH 3/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. |
| Message-ID | <sqnK2-5xs-19@gated-at.bofh.it> |
| In reply to | #1497368 |
On Fri, Oct 07, 2016 at 10:27:56PM +0530, Harman Kalra wrote:
> Error "open brace { should be on the previous line" caught by checkpatch.pl fixed.
> Signed-off-by: Harman Kalra <harman4linux@gmail.com>
Please put a blank line before the signed-off-by: line. As examples,
look at all other commits in the tree :)
thanks,
greg k-h
[toc] | [prev] | [next] | [standalone]
| From | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| Date | 2016-10-07 19:20 +0200 |
| Subject | [PATCH 1/3] Staging: i4l: Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed |
| Message-ID | <spGOJ-3x4-9@gated-at.bofh.it> |
| In reply to | #1495718 |
Warning "Prefer "pr_debug over printk(KERN_DEBUG... " and "few line more than 80 character" fixed
Signed-off-by: Harman Kalra <harman4linux@gmail.com>
---
drivers/staging/i4l/icn/icn.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/i4l/icn/icn.h b/drivers/staging/i4l/icn/icn.h
index f8f2e76..aa4c593 100644
--- a/drivers/staging/i4l/icn/icn.h
+++ b/drivers/staging/i4l/icn/icn.h
@@ -54,7 +54,8 @@
/* some useful macros for debugging */
#ifdef ICN_DEBUG_PORT
-#define OUTB_P(v, p) {printk(KERN_DEBUG "icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p);}
+#define OUTB_P(v, p) \
+ {printk(KERN_DEBUG "icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p); }
#else
#define OUTB_P outb
#endif
--
1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| Date | 2016-10-07 19:20 +0200 |
| Subject | [PATCH 2/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. |
| Message-ID | <spGYp-3AS-13@gated-at.bofh.it> |
| In reply to | #1497375 |
Errors "open brace { should be on the previous line" caught by checkpatch.pl fixed.
Signed-off-by: Harman Kalra <harman4linux@gmail.com>
---
drivers/staging/i4l/icn/icn.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/i4l/icn/icn.h b/drivers/staging/i4l/icn/icn.h
index aa4c593..8d0182c 100644
--- a/drivers/staging/i4l/icn/icn.h
+++ b/drivers/staging/i4l/icn/icn.h
@@ -187,8 +187,7 @@
#ifdef __KERNEL__
static icn_card *cards = (icn_card *) 0;
-static u_char chan2bank[] =
-{0, 4, 8, 12}; /* for icn_map_channel() */
+static u_char chan2bank[] = {0, 4, 8, 12}; /* for icn_map_channel() */
static icn_dev dev;
--
1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2016-10-09 17:10 +0200 |
| Subject | Re: [PATCH 2/3] Staging: i4l: Error "open brace { should be on the previous line" fixed. |
| Message-ID | <sqnTI-5PK-11@gated-at.bofh.it> |
| In reply to | #1497376 |
On Fri, Oct 07, 2016 at 10:27:55PM +0530, Harman Kalra wrote:
> Errors "open brace { should be on the previous line" caught by checkpatch.pl fixed.
Why two ' ' characters?
> Signed-off-by: Harman Kalra <harman4linux@gmail.com>
Same blank line needed.
thanks,
greg k-h
[toc] | [prev] | [next] | [standalone]
| From | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| Date | 2016-10-09 17:40 +0200 |
| Subject | [PATCH 3/3] Staging: i4l: icn: Fixed open brace should be on previous line error |
| Message-ID | <sqomJ-5ZH-1@gated-at.bofh.it> |
| In reply to | #1497932 |
This patch resolves the following error caught by checkpatch.pl:
ERROR: that open brace { should be on the previous line
Signed-off-by: Harman Kalra <harman4linux@gmail.com>
---
drivers/staging/i4l/icn/icn.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/i4l/icn/icn.h b/drivers/staging/i4l/icn/icn.h
index e273c27..07e2e01 100644
--- a/drivers/staging/i4l/icn/icn.h
+++ b/drivers/staging/i4l/icn/icn.h
@@ -186,8 +186,7 @@
#ifdef __KERNEL__
static icn_card *cards = (icn_card *) 0;
-static u_char chan2bank[] =
-{0, 4, 8, 12}; /* for icn_map_channel() */
+static u_char chan2bank[] = {0, 4, 8, 12}; /* for icn_map_channel() */
static icn_dev dev;
--
1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| Date | 2016-10-09 17:40 +0200 |
| Subject | [PATCH 2/3] Staging: i4l: icn: prefer pr_* instead of printk |
| Message-ID | <sqomJ-5ZH-21@gated-at.bofh.it> |
| In reply to | #1497932 |
This patch replaces call to printk with appropriate pr_*
function thus addressing the following warning generated by the
checkpatch script:
Prefer [subsystem eg: netdev]_dbg([subsystem]dev, ... then
dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ...
Signed-off-by: Harman Kalra <harman4linux@gmail.com>
---
drivers/staging/i4l/icn/icn.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/i4l/icn/icn.h b/drivers/staging/i4l/icn/icn.h
index f8f2e76..e273c27 100644
--- a/drivers/staging/i4l/icn/icn.h
+++ b/drivers/staging/i4l/icn/icn.h
@@ -54,7 +54,7 @@
/* some useful macros for debugging */
#ifdef ICN_DEBUG_PORT
-#define OUTB_P(v, p) {printk(KERN_DEBUG "icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p);}
+#define OUTB_P(v, p) {pr_debug("icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p);}
#else
#define OUTB_P outb
#endif
--
1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Harman Kalra <harman4linux@gmail.com> |
|---|---|
| Date | 2016-10-09 17:40 +0200 |
| Subject | [PATCH 1/3] Staging: i4l: icn: Fixed open brace should be on previous line error |
| Message-ID | <sqomJ-5ZH-3@gated-at.bofh.it> |
| In reply to | #1497932 |
This patch resolves the following error caught by checkpatch.pl:
ERROR: that open brace { should be on the previous line
Signed-off-by: Harman Kalra <harman4linux@gmail.com>
---
drivers/staging/i4l/icn/icn.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/i4l/icn/icn.c b/drivers/staging/i4l/icn/icn.c
index 514bfc2..3750ba3 100644
--- a/drivers/staging/i4l/icn/icn.c
+++ b/drivers/staging/i4l/icn/icn.c
@@ -411,8 +411,7 @@
int action;
} icn_stat;
/* *INDENT-OFF* */
-static icn_stat icn_stat_table[] =
-{
+static icn_stat icn_stat_table[] = {
{"BCON_", ISDN_STAT_BCONN, 1}, /* B-Channel connected */
{"BDIS_", ISDN_STAT_BHUP, 2}, /* B-Channel disconnected */
/*
--
1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2016-10-07 23:00 +0200 |
| Subject | Re: [PATCH 1/3] Staging: i4l: Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed |
| Message-ID | <spKpj-5MK-5@gated-at.bofh.it> |
| In reply to | #1497375 |
On Fri, 2016-10-07 at 22:27 +0530, Harman Kalra wrote:
> Warning "Prefer "pr_debug over printk(KERN_DEBUG... " and "few line more than 80 character" fixed
The commit subject and message doesn't match the code change.
> diff --git a/drivers/staging/i4l/icn/icn.h b/drivers/staging/i4l/icn/icn.h
[]
> @@ -54,7 +54,8 @@
>
> /* some useful macros for debugging */
> #ifdef ICN_DEBUG_PORT
> -#define OUTB_P(v, p) {printk(KERN_DEBUG "icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p);}
> +#define OUTB_P(v, p) \
> + {printk(KERN_DEBUG "icn: outb_p(0x%02x,0x%03x)\n", v, p); outb_p(v, p); }
This would be better with a do {...} while (0) guard
[toc] | [prev] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2016-10-09 17:00 +0200 |
| Subject | Re: [PATCH 1/3] Staging: i4l: Warning "Prefer "pr_debug over printk(KERN_DEBUG... " fixed |
| Message-ID | <sqnK1-5xs-7@gated-at.bofh.it> |
| In reply to | #1497375 |
On Fri, Oct 07, 2016 at 10:27:54PM +0530, Harman Kalra wrote: > Warning "Prefer "pr_debug over printk(KERN_DEBUG... " and "few line more than 80 character" fixed That is two different things again :( I can't take this as is... greg k-h
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web