wandboard: Do not print error when PMIC is not present
On wandboard variants prior to revD1, there is no PMIC populated, so do not print an error when the reading of the device ID register fails. Signed-off-by: Fabio Estevam <festevam@gmail.com> Tested-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
417ea635dc
commit
b8e74fc8db
@ -369,7 +369,7 @@ int power_init_board(void)
|
||||
|
||||
reg = pmic_reg_read(dev, PFUZE100_DEVICEID);
|
||||
if (reg < 0) {
|
||||
printf("pmic_reg_read() ret %d\n", reg);
|
||||
debug("pmic_reg_read() ret %d\n", reg);
|
||||
return 0;
|
||||
}
|
||||
printf("PMIC: PFUZE100 ID=0x%02x\n", reg);
|
||||
|
Loading…
Reference in New Issue
Block a user