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

Commit 90ba0813 authored by Mark Brown's avatar Mark Brown
Browse files

Merge remote-tracking branch 'regulator/fix/pfuze100' into regulator-linus

parents 3981560c 88baf714
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -308,7 +308,13 @@ static int pfuze_identify(struct pfuze_chip *pfuze_chip)
	if (ret)
		return ret;

	if (value & 0x0f) {
	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;
	}