mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] regulator: pfuze100-regulator: Fix some checkpatch complaints
@ 2014-01-15  2:52 Fabio Estevam
  2014-01-15  3:02 ` Joe Perches
  2014-01-15 11:47 ` Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2014-01-15  2:52 UTC (permalink / raw)
  To: broonie; +Cc: linux-kernel, Fabio Estevam

From: Fabio Estevam <fabio.estevam@freescale.com>

Fix the following checkpatch error and warning:

ERROR: switch and case should be at the same indent
#311: FILE: drivers/regulator/pfuze100-regulator.c:311:
+	switch (value & 0x0f) {
[...]
+		case 0x8:
[...]
+		case 0x0:
[...]
+		default:

WARNING: line over 80 characters
#312: FILE: drivers/regulator/pfuze100-regulator.c:312:
+		/* Freescale misprogrammed 1-3% of parts prior to week 8 of 2013 as ID=8 */

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 drivers/regulator/pfuze100-regulator.c | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/drivers/regulator/pfuze100-regulator.c b/drivers/regulator/pfuze100-regulator.c
index 0c511ae..ac01ad2 100644
--- a/drivers/regulator/pfuze100-regulator.c
+++ b/drivers/regulator/pfuze100-regulator.c
@@ -309,14 +309,17 @@ static int pfuze_identify(struct pfuze_chip *pfuze_chip)
 		return ret;
 
 	switch (value & 0x0f) {
-		/* Freescale misprogrammed 1-3% of parts prior to week 8 of 2013 as ID=8 */
-		case 0x8:
-			dev_info(pfuze_chip->dev, "Assuming misprogrammed ID=0x8");
-		case 0x0:
-			break;
-		default:
-			dev_warn(pfuze_chip->dev, "Illegal ID: %x\n", value);
-			return -ENODEV;
+	/*
+	 * Freescale misprogrammed 1-3% of parts prior to week 8 of 2013
+	 * as ID=8
+	 */
+	case 0x8:
+		dev_info(pfuze_chip->dev, "Assuming misprogrammed ID=0x8");
+	case 0x0:
+		break;
+	default:
+		dev_warn(pfuze_chip->dev, "Illegal ID: %x\n", value);
+		return -ENODEV;
 	}
 
 	ret = regmap_read(pfuze_chip->regmap, PFUZE100_REVID, &value);
-- 
1.8.1.2


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

* Re: [PATCH] regulator: pfuze100-regulator: Fix some checkpatch complaints
  2014-01-15  2:52 [PATCH] regulator: pfuze100-regulator: Fix some checkpatch complaints Fabio Estevam
@ 2014-01-15  3:02 ` Joe Perches
  2014-01-16  0:13   ` Fabio Estevam
  2014-01-15 11:47 ` Mark Brown
  1 sibling, 1 reply; 4+ messages in thread
From: Joe Perches @ 2014-01-15  3:02 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: broonie, linux-kernel, Fabio Estevam

On Wed, 2014-01-15 at 00:52 -0200, Fabio Estevam wrote:
> Fix the following checkpatch error and warning:

While you're at it:

> diff --git a/drivers/regulator/pfuze100-regulator.c b/drivers/regulator/pfuze100-regulator.c
[]
> @@ -309,14 +309,17 @@ static int pfuze_identify(struct pfuze_chip *pfuze_chip)
[]
> +	case 0x8:
> +		dev_info(pfuze_chip->dev, "Assuming misprogrammed ID=0x8");

missing "\n" terminating newline and
missing break (or fallthrough comment)

> +	case 0x0:
> +		break;
> +	default:
> +		dev_warn(pfuze_chip->dev, "Illegal ID: %x\n", value);

invalid vs illegal



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

* Re: [PATCH] regulator: pfuze100-regulator: Fix some checkpatch complaints
  2014-01-15  2:52 [PATCH] regulator: pfuze100-regulator: Fix some checkpatch complaints Fabio Estevam
  2014-01-15  3:02 ` Joe Perches
@ 2014-01-15 11:47 ` Mark Brown
  1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2014-01-15 11:47 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: linux-kernel, Fabio Estevam

[-- Attachment #1: Type: text/plain, Size: 192 bytes --]

On Wed, Jan 15, 2014 at 12:52:45AM -0200, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Fix the following checkpatch error and warning:

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [PATCH] regulator: pfuze100-regulator: Fix some checkpatch complaints
  2014-01-15  3:02 ` Joe Perches
@ 2014-01-16  0:13   ` Fabio Estevam
  0 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2014-01-16  0:13 UTC (permalink / raw)
  To: Joe Perches; +Cc: Mark Brown, linux-kernel, Fabio Estevam

On Wed, Jan 15, 2014 at 1:02 AM, Joe Perches <joe@perches.com> wrote:
> On Wed, 2014-01-15 at 00:52 -0200, Fabio Estevam wrote:
>> Fix the following checkpatch error and warning:
>
> While you're at it:
>
>> diff --git a/drivers/regulator/pfuze100-regulator.c b/drivers/regulator/pfuze100-regulator.c
> []
>> @@ -309,14 +309,17 @@ static int pfuze_identify(struct pfuze_chip *pfuze_chip)
> []
>> +     case 0x8:
>> +             dev_info(pfuze_chip->dev, "Assuming misprogrammed ID=0x8");
>
> missing "\n" terminating newline and
> missing break (or fallthrough comment)
>
>> +     case 0x0:
>> +             break;
>> +     default:
>> +             dev_warn(pfuze_chip->dev, "Illegal ID: %x\n", value);
>
> invalid vs illegal

Thanks, Joe.

Will address your suggestions through a different patch.

Regards,

Fabio Estevam

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

end of thread, other threads:[~2014-01-16  0:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-15  2:52 [PATCH] regulator: pfuze100-regulator: Fix some checkpatch complaints Fabio Estevam
2014-01-15  3:02 ` Joe Perches
2014-01-16  0:13   ` Fabio Estevam
2014-01-15 11:47 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®