diff options
| author | Simon Glass <sjg@chromium.org> | 2020-11-04 09:57:39 -0700 | 
|---|---|---|
| committer | Bin Meng <bmeng.cn@gmail.com> | 2020-11-06 09:51:32 +0800 | 
| commit | 1da448bb9fd281e5a0574aab838d9ef1f6b18575 (patch) | |
| tree | 6adc2fee9f477bf8ecc39bc1b9a8154fd4368859 /arch/x86/lib/fsp | |
| parent | d0147fe8a27aaf21eb07d15088cd417853e76965 (diff) | |
x86: Silence some logging statements
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 <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/lib/fsp')
| -rw-r--r-- | arch/x86/lib/fsp/fsp_graphics.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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); | 
