diff mbox series

[1/1] efi_loader: 'EFI using ACPI tables at' should be debug message

Message ID 20240409204824.70582-1-heinrich.schuchardt@canonical.com
State Accepted, archived
Commit 8d7ccea1c3e17bced94e4e5d76f4a3eecd12b18f
Delegated to: Heinrich Schuchardt
Headers show
Series [1/1] efi_loader: 'EFI using ACPI tables at' should be debug message | expand

Commit Message

Heinrich Schuchardt April 9, 2024, 8:48 p.m. UTC
The message "EFI using ACPI tables at %lx\n" is only of interest when
debugging. Make it a debug message.

Fixes: 085f8db6b98d ("efi: Use the installed ACPI tables")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 lib/efi_loader/efi_acpi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ilias Apalodimas April 10, 2024, 9:22 a.m. UTC | #1
Hi Heinrich

On Tue, 9 Apr 2024 at 22:48, Heinrich Schuchardt
<heinrich.schuchardt@canonical.com> wrote:
>
> The message "EFI using ACPI tables at %lx\n" is only of interest when
> debugging. Make it a debug message.
>
> Fixes: 085f8db6b98d ("efi: Use the installed ACPI tables")

It doesn't fix anything broken, so can you get rid of this during the merge?

Other than that
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>


> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> ---
>  lib/efi_loader/efi_acpi.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/efi_loader/efi_acpi.c b/lib/efi_loader/efi_acpi.c
> index 67bbd2a01c0..67bd7f8ca24 100644
> --- a/lib/efi_loader/efi_acpi.c
> +++ b/lib/efi_loader/efi_acpi.c
> @@ -41,7 +41,7 @@ efi_status_t efi_acpi_register(void)
>         }
>
>         addr = gd_acpi_start();
> -       printf("EFI using ACPI tables at %lx\n", addr);
> +       log_debug("EFI using ACPI tables at %lx\n", addr);
>
>         /* And expose them to our EFI payload */
>         return efi_install_configuration_table(&acpi_guid,
> --
> 2.43.0
>
diff mbox series

Patch

diff --git a/lib/efi_loader/efi_acpi.c b/lib/efi_loader/efi_acpi.c
index 67bbd2a01c0..67bd7f8ca24 100644
--- a/lib/efi_loader/efi_acpi.c
+++ b/lib/efi_loader/efi_acpi.c
@@ -41,7 +41,7 @@  efi_status_t efi_acpi_register(void)
 	}
 
 	addr = gd_acpi_start();
-	printf("EFI using ACPI tables at %lx\n", addr);
+	log_debug("EFI using ACPI tables at %lx\n", addr);
 
 	/* And expose them to our EFI payload */
 	return efi_install_configuration_table(&acpi_guid,