forked from luck/tmp_suning_uos_patched
Merge remote-tracking branch 'regulator/fix/pfuze100' into regulator-linus
This commit is contained in:
commit
90ba0813db
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user