mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
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: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
598911b42c
commit
62b389161f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user