All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Fix multiple checkpatch issues in bcm2835-ctl.c
@ 2017-03-02 11:27 Aishwarya Pant
  2017-03-02 11:27 ` [PATCH 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Aishwarya Pant @ 2017-03-02 11:27 UTC (permalink / raw)
  To: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list
  Cc: outreachy-kernel

Fix multiple code styling warnings issued by checkpatch on file
bcm2835-ctl.c in bcm2835-audio driver

Aishwarya Pant (5):
  staging: bcm2835-camera: fix no space is necessary after a cast
    warning
  staging: bcm2835-camera: Logical continuations should be on the
    previous     line
  staging: bcm2835-camera: fix block comment formatting
  staging: bcm2835-camera: remove extra blank line
  staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err

 .../staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

-- 
2.7.4



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning
  2017-03-02 11:27 [PATCH 0/5] Fix multiple checkpatch issues in bcm2835-ctl.c Aishwarya Pant
@ 2017-03-02 11:27 ` Aishwarya Pant
  2017-03-02 11:28 ` [PATCH 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line Aishwarya Pant
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Aishwarya Pant @ 2017-03-02 11:27 UTC (permalink / raw)
  To: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list
  Cc: outreachy-kernel

Remove instances of unnecessary blank space after cast in bcm2835-ctl.c

Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
---
 drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
index a4ffa1b..99e9ca3 100644
--- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
+++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
@@ -116,7 +116,7 @@ static int snd_bcm2835_ctl_put(struct snd_kcontrol *kcontrol,
 		return -EINTR;
 
 	if (kcontrol->private_value == PCM_PLAYBACK_VOLUME) {
-		audio_info("Volume change attempted.. volume = %d new_volume = %d\n", chip->volume, (int) ucontrol->value.integer.value[0]);
+		audio_info("Volume change attempted.. volume = %d new_volume = %d\n", chip->volume, (int)ucontrol->value.integer.value[0]);
 		if (chip->mute == CTRL_VOL_MUTE) {
 			/* changed = toggle_mute(chip, CTRL_VOL_UNMUTE); */
 			changed = 1; /* should return 0 to signify no change but the mixer takes this as the opposite sign (no idea why) */
@@ -226,7 +226,7 @@ static int snd_bcm2835_spdif_default_put(struct snd_kcontrol *kcontrol,
 		return -EINTR;
 
 	for (i = 0; i < 4; i++)
-		val |= (unsigned int) ucontrol->value.iec958.status[i] << (i * 8);
+		val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
 
 	change = val != chip->spdif_status;
 	chip->spdif_status = val;
@@ -289,7 +289,7 @@ static int snd_bcm2835_spdif_stream_put(struct snd_kcontrol *kcontrol,
 		return -EINTR;
 
 	for (i = 0; i < 4; i++)
-		val |= (unsigned int) ucontrol->value.iec958.status[i] << (i * 8);
+		val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
 	change = val != chip->spdif_status;
 	chip->spdif_status = val;
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line
  2017-03-02 11:27 [PATCH 0/5] Fix multiple checkpatch issues in bcm2835-ctl.c Aishwarya Pant
  2017-03-02 11:27 ` [PATCH 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
@ 2017-03-02 11:28 ` Aishwarya Pant
  2017-03-02 12:09   ` [Outreachy kernel] " Julia Lawall
  2017-03-02 11:28 ` [PATCH 3/5] staging: bcm2835-camera: fix block comment formatting Aishwarya Pant
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Aishwarya Pant @ 2017-03-02 11:28 UTC (permalink / raw)
  To: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list
  Cc: outreachy-kernel

Keep logical continuations on the same line to improve code readability

Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
---
 drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
index 99e9ca3..17d34c0 100644
--- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
+++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
@@ -122,8 +122,7 @@ static int snd_bcm2835_ctl_put(struct snd_kcontrol *kcontrol,
 			changed = 1; /* should return 0 to signify no change but the mixer takes this as the opposite sign (no idea why) */
 			goto unlock;
 		}
-		if (changed
-			|| (ucontrol->value.integer.value[0] != chip2alsa(chip->volume))) {
+		if (changed || (ucontrol->value.integer.value[0] != chip2alsa(chip->volume))) {
 
 			chip->volume = alsa2chip(ucontrol->value.integer.value[0]);
 			changed = 1;
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/5] staging: bcm2835-camera: fix block comment formatting
  2017-03-02 11:27 [PATCH 0/5] Fix multiple checkpatch issues in bcm2835-ctl.c Aishwarya Pant
  2017-03-02 11:27 ` [PATCH 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
  2017-03-02 11:28 ` [PATCH 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line Aishwarya Pant
@ 2017-03-02 11:28 ` Aishwarya Pant
  2017-03-02 11:29 ` [PATCH 4/5] staging: bcm2835-camera: remove extra blank line Aishwarya Pant
  2017-03-02 11:30 ` [PATCH 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
  4 siblings, 0 replies; 8+ messages in thread
From: Aishwarya Pant @ 2017-03-02 11:28 UTC (permalink / raw)
  To: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list
  Cc: outreachy-kernel

Fix block comment formatting to suppress the following warning thrown by
checkpatch: Block comments use a trailing */ on a separate line

Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
---
 drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
index 17d34c0..80b2062 100644
--- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
+++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
@@ -245,9 +245,10 @@ static int snd_bcm2835_spdif_mask_info(struct snd_kcontrol *kcontrol,
 static int snd_bcm2835_spdif_mask_get(struct snd_kcontrol *kcontrol,
 	struct snd_ctl_elem_value *ucontrol)
 {
-	/* bcm2835 supports only consumer mode and sets all other format flags
-	 * automatically. So the only thing left is signalling non-audio
-	 * content */
+	/*
+	 * bcm2835 supports only consumer mode and sets all other format flags
+	 * automatically. So the only thing left is signalling non-audio content
+	 */
 	ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO;
 	return 0;
 }
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 4/5] staging: bcm2835-camera: remove extra blank line
  2017-03-02 11:27 [PATCH 0/5] Fix multiple checkpatch issues in bcm2835-ctl.c Aishwarya Pant
                   ` (2 preceding siblings ...)
  2017-03-02 11:28 ` [PATCH 3/5] staging: bcm2835-camera: fix block comment formatting Aishwarya Pant
@ 2017-03-02 11:29 ` Aishwarya Pant
  2017-03-02 11:30 ` [PATCH 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
  4 siblings, 0 replies; 8+ messages in thread
From: Aishwarya Pant @ 2017-03-02 11:29 UTC (permalink / raw)
  To: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list
  Cc: outreachy-kernel

Fix the warning: Blank lines aren't necessary after an open brace
'{' issued by checkpatch on bcm2835-ctl.c

Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
---
 drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
index 80b2062..46814fd 100644
--- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
+++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
@@ -123,7 +123,6 @@ static int snd_bcm2835_ctl_put(struct snd_kcontrol *kcontrol,
 			goto unlock;
 		}
 		if (changed || (ucontrol->value.integer.value[0] != chip2alsa(chip->volume))) {
-
 			chip->volume = alsa2chip(ucontrol->value.integer.value[0]);
 			changed = 1;
 		}
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err
  2017-03-02 11:27 [PATCH 0/5] Fix multiple checkpatch issues in bcm2835-ctl.c Aishwarya Pant
                   ` (3 preceding siblings ...)
  2017-03-02 11:29 ` [PATCH 4/5] staging: bcm2835-camera: remove extra blank line Aishwarya Pant
@ 2017-03-02 11:30 ` Aishwarya Pant
  2017-03-02 12:07   ` [Outreachy kernel] " Julia Lawall
  4 siblings, 1 reply; 8+ messages in thread
From: Aishwarya Pant @ 2017-03-02 11:30 UTC (permalink / raw)
  To: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list
  Cc: outreachy-kernel

Fix checkpatch warning: pr_err(...  to printk(KERN_ERR ...
For newer drivers, the convention for printing kernel messages is to use
pr_* family of macros

Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
---
 drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
index 46814fd..21eaba9 100644
--- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
+++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
@@ -141,7 +141,7 @@ static int snd_bcm2835_ctl_put(struct snd_kcontrol *kcontrol,
 
 	if (changed) {
 		if (bcm2835_audio_set_ctls(chip))
-			printk(KERN_ERR "Failed to set ALSA controls..\n");
+			pr_err("Failed to set ALSA controls..\n");
 	}
 
 unlock:
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [Outreachy kernel] [PATCH 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err
  2017-03-02 11:30 ` [PATCH 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
@ 2017-03-02 12:07   ` Julia Lawall
  0 siblings, 0 replies; 8+ messages in thread
From: Julia Lawall @ 2017-03-02 12:07 UTC (permalink / raw)
  To: Aishwarya Pant
  Cc: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list, outreachy-kernel



On Thu, 2 Mar 2017, Aishwarya Pant wrote:

> Fix checkpatch warning: pr_err(...  to printk(KERN_ERR ...
> For newer drivers, the convention for printing kernel messages is to use
> pr_* family of macros
>
> Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
> ---
>  drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
> index 46814fd..21eaba9 100644
> --- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
> +++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
> @@ -141,7 +141,7 @@ static int snd_bcm2835_ctl_put(struct snd_kcontrol *kcontrol,
>
>  	if (changed) {
>  		if (bcm2835_audio_set_ctls(chip))
> -			printk(KERN_ERR "Failed to set ALSA controls..\n");
> +			pr_err("Failed to set ALSA controls..\n");

Is it possible to use dev_err?

julia

>  	}
>
>  unlock:
> --
> 2.7.4
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/873ea58099cfe40f563436342aba1ea5e0f12507.1488453518.git.aishpant%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Outreachy kernel] [PATCH 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line
  2017-03-02 11:28 ` [PATCH 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line Aishwarya Pant
@ 2017-03-02 12:09   ` Julia Lawall
  0 siblings, 0 replies; 8+ messages in thread
From: Julia Lawall @ 2017-03-02 12:09 UTC (permalink / raw)
  To: Aishwarya Pant
  Cc: Stephen Warren, Lee Jones, Eric Anholt, Greg Kroah-Hartman,
	Florian Fainelli, Ray Jui, Scott Branden,
	bcm-kernel-feedback-list, outreachy-kernel



On Thu, 2 Mar 2017, Aishwarya Pant wrote:

> Keep logical continuations on the same line to improve code readability
>
> Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
> ---
>  drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
> index 99e9ca3..17d34c0 100644
> --- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
> +++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
> @@ -122,8 +122,7 @@ static int snd_bcm2835_ctl_put(struct snd_kcontrol *kcontrol,
>  			changed = 1; /* should return 0 to signify no change but the mixer takes this as the opposite sign (no idea why) */
>  			goto unlock;
>  		}
> -		if (changed
> -			|| (ucontrol->value.integer.value[0] != chip2alsa(chip->volume))) {
> +		if (changed || (ucontrol->value.integer.value[0] != chip2alsa(chip->volume))) {

A better solution would be to put the || on the same line as changed, line
ucontrol up with the right side of the ( on the if, and drop the unneeded
()s around the != test.  Then the code would come closer to fitting withn
80 chars.

julia

>
>  			chip->volume = alsa2chip(ucontrol->value.integer.value[0]);
>  			changed = 1;
> --
> 2.7.4
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/3ef2134adc43bc842339c2e81db48c97a31e43fd.1488453518.git.aishpant%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-03-02 12:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-02 11:27 [PATCH 0/5] Fix multiple checkpatch issues in bcm2835-ctl.c Aishwarya Pant
2017-03-02 11:27 ` [PATCH 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
2017-03-02 11:28 ` [PATCH 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line Aishwarya Pant
2017-03-02 12:09   ` [Outreachy kernel] " Julia Lawall
2017-03-02 11:28 ` [PATCH 3/5] staging: bcm2835-camera: fix block comment formatting Aishwarya Pant
2017-03-02 11:29 ` [PATCH 4/5] staging: bcm2835-camera: remove extra blank line Aishwarya Pant
2017-03-02 11:30 ` [PATCH 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
2017-03-02 12:07   ` [Outreachy kernel] " Julia Lawall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.