Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62b38916 authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown
Browse files

regulator: pfuze100-regulator: Fix some checkpatch complaints



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: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 598911b4
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
@@ -309,7 +309,10 @@ 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 */
	/*
	 * 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: