mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
x86: pinctrl: Drop unlikely error messages from TPL
These errors are only really for development purposes. Drop them to reduce the size of TPL. The error numbers are still reported. This reduces the TPL binary size on coral by about 160 bytes. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8b842be10c
commit
53d59694ce
1 changed files with 8 additions and 3 deletions
|
@ -274,7 +274,9 @@ static int pinctrl_configure_itss(struct udevice *dev,
|
|||
irq = pcr_read32(dev, PAD_CFG1_OFFSET(pad_cfg_offset));
|
||||
irq &= PAD_CFG1_IRQ_MASK;
|
||||
if (!irq) {
|
||||
log_err("GPIO %u doesn't support APIC routing\n", cfg->pad);
|
||||
if (spl_phase() > PHASE_TPL)
|
||||
log_err("GPIO %u doesn't support APIC routing\n",
|
||||
cfg->pad);
|
||||
|
||||
return -EPROTONOSUPPORT;
|
||||
}
|
||||
|
@ -314,7 +316,8 @@ static int pinctrl_pad_reset_config_override(const struct pad_community *comm,
|
|||
return config_value;
|
||||
}
|
||||
}
|
||||
log_err("Logical-to-Chipset mapping not found\n");
|
||||
if (spl_phase() > PHASE_TPL)
|
||||
log_err("Logical-to-Chipset mapping not found\n");
|
||||
|
||||
return -ENOENT;
|
||||
}
|
||||
|
@ -620,7 +623,9 @@ int intel_pinctrl_of_to_plat(struct udevice *dev,
|
|||
struct intel_pinctrl_priv *priv = dev_get_priv(dev);
|
||||
|
||||
if (!comm) {
|
||||
log_err("Cannot find community for pid %d\n", pplat->pid);
|
||||
if (spl_phase() > PHASE_TPL)
|
||||
log_err("Cannot find community for pid %d\n",
|
||||
pplat->pid);
|
||||
return -EDOM;
|
||||
}
|
||||
priv->comm = comm;
|
||||
|
|
Loading…
Reference in a new issue