* [PATCH v2 0/5] staging: bcm2835-audio: fix multiple checkpatch warnings
@ 2017-03-02 17:01 Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Aishwarya Pant @ 2017-03-02 17:01 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
Changes in v2:
- Replace pr_err with dev_err
Aishwarya Pant (5):
*** HERE ***
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] 7+ messages in thread
* [PATCH v2 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning
2017-03-02 17:01 [PATCH v2 0/5] staging: bcm2835-audio: fix multiple checkpatch warnings Aishwarya Pant
@ 2017-03-02 17:01 ` Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line Aishwarya Pant
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Aishwarya Pant @ 2017-03-02 17:01 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] 7+ messages in thread
* [PATCH v2 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line
2017-03-02 17:01 [PATCH v2 0/5] staging: bcm2835-audio: fix multiple checkpatch warnings Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
@ 2017-03-02 17:01 ` Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 3/5] staging: bcm2835-camera: fix block comment formatting Aishwarya Pant
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Aishwarya Pant @ 2017-03-02 17:01 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] 7+ messages in thread
* [PATCH v2 3/5] staging: bcm2835-camera: fix block comment formatting
2017-03-02 17:01 [PATCH v2 0/5] staging: bcm2835-audio: fix multiple checkpatch warnings Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line Aishwarya Pant
@ 2017-03-02 17:01 ` Aishwarya Pant
2017-03-02 17:02 ` [PATCH v2 4/5] staging: bcm2835-camera: remove extra blank line Aishwarya Pant
2017-03-02 17:02 ` [PATCH v2 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
4 siblings, 0 replies; 7+ messages in thread
From: Aishwarya Pant @ 2017-03-02 17:01 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] 7+ messages in thread
* [PATCH v2 4/5] staging: bcm2835-camera: remove extra blank line
2017-03-02 17:01 [PATCH v2 0/5] staging: bcm2835-audio: fix multiple checkpatch warnings Aishwarya Pant
` (2 preceding siblings ...)
2017-03-02 17:01 ` [PATCH v2 3/5] staging: bcm2835-camera: fix block comment formatting Aishwarya Pant
@ 2017-03-02 17:02 ` Aishwarya Pant
2017-03-02 17:02 ` [PATCH v2 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
4 siblings, 0 replies; 7+ messages in thread
From: Aishwarya Pant @ 2017-03-02 17:02 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] 7+ messages in thread
* [PATCH v2 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err
2017-03-02 17:01 [PATCH v2 0/5] staging: bcm2835-audio: fix multiple checkpatch warnings Aishwarya Pant
` (3 preceding siblings ...)
2017-03-02 17:02 ` [PATCH v2 4/5] staging: bcm2835-camera: remove extra blank line Aishwarya Pant
@ 2017-03-02 17:02 ` Aishwarya Pant
2017-03-02 17:14 ` [Outreachy kernel] " Julia Lawall
4 siblings, 1 reply; 7+ messages in thread
From: Aishwarya Pant @ 2017-03-02 17:02 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
dev_* (if device information is available) or pr_* family of macros
Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
---
Changes in v2:
-Prefer dev_err to pr_err where device information is available
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..8cf7a02 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");
+ dev_err(chip->card->dev, "Failed to set ALSA controls..\n");
}
unlock:
--
2.7.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Outreachy kernel] [PATCH v2 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err
2017-03-02 17:02 ` [PATCH v2 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
@ 2017-03-02 17:14 ` Julia Lawall
0 siblings, 0 replies; 7+ messages in thread
From: Julia Lawall @ 2017-03-02 17:14 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
> dev_* (if device information is available) or pr_* family of macros
This could be more concise as "Use dev_err(... rather than printk(KERN_ERR
... Problem found by checkpatch.".
The subject line is no longer correct.
>
> Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
> ---
> Changes in v2:
> -Prefer dev_err to pr_err where device information is available
>
> 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..8cf7a02 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");
> + dev_err(chip->card->dev, "Failed to set ALSA controls..\n");
> }
If you merge the conditional tests using &&, then you can get rid of the
braces and the whole dev_err call will fit within 80 characters.
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/2bc758017cfeb61511404784716e44f3fe689101.1488473946.git.aishpant%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2017-03-02 17:14 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-02 17:01 [PATCH v2 0/5] staging: bcm2835-audio: fix multiple checkpatch warnings Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 1/5] staging: bcm2835-camera: fix no space is necessary after a cast warning Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 2/5] staging: bcm2835-camera: Logical continuations should be on the previous line Aishwarya Pant
2017-03-02 17:01 ` [PATCH v2 3/5] staging: bcm2835-camera: fix block comment formatting Aishwarya Pant
2017-03-02 17:02 ` [PATCH v2 4/5] staging: bcm2835-camera: remove extra blank line Aishwarya Pant
2017-03-02 17:02 ` [PATCH v2 5/5] staging: bcm2835-camera: replace printk(KERN_ERR) with pr_err Aishwarya Pant
2017-03-02 17:14 ` [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.