Quite a few log_info() calls are included in the x86 code which should use
log_debug() instead. Convert them to reduce unwanted output.

Signed-off-by: Simon Glass <s...@chromium.org>
---

 arch/x86/cpu/apollolake/fsp_s.c            | 8 ++++----
 arch/x86/cpu/intel_common/intel_opregion.c | 2 +-
 arch/x86/cpu/intel_common/itss.c           | 8 ++++----
 arch/x86/lib/acpi_nhlt.c                   | 2 +-
 arch/x86/lib/fsp/fsp_graphics.c            | 2 +-
 5 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/arch/x86/cpu/apollolake/fsp_s.c b/arch/x86/cpu/apollolake/fsp_s.c
index 715ceab6ac7..288188027a4 100644
--- a/arch/x86/cpu/apollolake/fsp_s.c
+++ b/arch/x86/cpu/apollolake/fsp_s.c
@@ -116,10 +116,10 @@ static int set_power_limits(struct udevice *dev)
 
        /* Program package power limits in RAPL MSR */
        msr_write(MSR_PKG_POWER_LIMIT, limit);
-       log_info("RAPL PL1 %d.%dW\n", tdp / power_unit,
-                100 * (tdp % power_unit) / power_unit);
-       log_info("RAPL PL2 %d.%dW\n", pl2_val / power_unit,
-                100 * (pl2_val % power_unit) / power_unit);
+       log_debug("RAPL PL1 %d.%dW\n", tdp / power_unit,
+                 100 * (tdp % power_unit) / power_unit);
+       log_debug("RAPL PL2 %d.%dW\n", pl2_val / power_unit,
+                 100 * (pl2_val % power_unit) / power_unit);
 
        /*
         * Sett RAPL MMIO register for Power limits. RAPL driver is using MSR
diff --git a/arch/x86/cpu/intel_common/intel_opregion.c 
b/arch/x86/cpu/intel_common/intel_opregion.c
index c95ae04992d..1eed21d8cdf 100644
--- a/arch/x86/cpu/intel_common/intel_opregion.c
+++ b/arch/x86/cpu/intel_common/intel_opregion.c
@@ -42,7 +42,7 @@ static int locate_vbt(char **vbtp, int *sizep)
                return -EINVAL;
        }
 
-       log_info("Found a VBT of %u bytes\n", size);
+       log_debug("Found a VBT of %u bytes\n", size);
        *sizep = size;
        *vbtp = vbt_data;
 
diff --git a/arch/x86/cpu/intel_common/itss.c b/arch/x86/cpu/intel_common/itss.c
index fe84ebe29f7..c74a9a45172 100644
--- a/arch/x86/cpu/intel_common/itss.c
+++ b/arch/x86/cpu/intel_common/itss.c
@@ -67,7 +67,7 @@ static int snapshot_polarities(struct udevice *dev)
        reg_start = start / IRQS_PER_IPC;
        reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC);
 
-       log_info("ITSS IRQ Polarities snapshot %p\n", priv->irq_snapshot);
+       log_debug("ITSS IRQ Polarities snapshot %p\n", priv->irq_snapshot);
        for (i = reg_start; i < reg_end; i++) {
                uint reg = PCR_ITSS_IPC0_CONF + sizeof(u32) * i;
 
@@ -89,11 +89,11 @@ static void show_polarities(struct udevice *dev, const char 
*msg)
 {
        int i;
 
-       log_info("ITSS IRQ Polarities %s:\n", msg);
+       log_debug("ITSS IRQ Polarities %s:\n", msg);
        for (i = 0; i < NUM_IPC_REGS; i++) {
                uint reg = PCR_ITSS_IPC0_CONF + sizeof(u32) * i;
 
-               log_info("IPC%d: 0x%08x\n", i, pcr_read32(dev, reg));
+               log_debug("IPC%d: 0x%08x\n", i, pcr_read32(dev, reg));
        }
 }
 
@@ -115,7 +115,7 @@ static int restore_polarities(struct udevice *dev)
               sizeof(priv->irq_snapshot));
 
        show_polarities(dev, "Before");
-       log_info("priv->irq_snapshot %p\n", priv->irq_snapshot);
+       log_debug("priv->irq_snapshot %p\n", priv->irq_snapshot);
 
        reg_start = start / IRQS_PER_IPC;
        reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC);
diff --git a/arch/x86/lib/acpi_nhlt.c b/arch/x86/lib/acpi_nhlt.c
index dda2af48af4..a464dbd81c7 100644
--- a/arch/x86/lib/acpi_nhlt.c
+++ b/arch/x86/lib/acpi_nhlt.c
@@ -390,7 +390,7 @@ int nhlt_serialise_oem_overrides(struct acpi_ctx *ctx, 
struct nhlt *nhlt,
        size_t oem_table_id_len;
        int ret;
 
-       log_info("ACPI:    * NHLT\n");
+       log_debug("ACPI:    * NHLT\n");
        sz = nhlt_current_size(nhlt);
 
        /* Create header */
diff --git a/arch/x86/lib/fsp/fsp_graphics.c b/arch/x86/lib/fsp/fsp_graphics.c
index 858d7942fed..6534b6690bd 100644
--- a/arch/x86/lib/fsp/fsp_graphics.c
+++ b/arch/x86/lib/fsp/fsp_graphics.c
@@ -139,7 +139,7 @@ static int fsp_video_acpi_write_tables(const struct udevice 
*dev,
        struct igd_opregion *opregion;
        int ret;
 
-       printf("ACPI:    * IGD OpRegion\n");
+       log_debug("ACPI:    * IGD OpRegion\n");
        opregion = (struct igd_opregion *)ctx->current;
 
        ret = intel_gma_init_igd_opregion((struct udevice *)dev, opregion);
-- 
2.28.0.681.g6f77f65b4e-goog

Reply via email to