drivers/efi/efivars: Change printk level from ERROR to DEBUG

This case doesn't reflect an error condition, so adjust the printk
level accordingly.

Change-Id: I3afa818447d3e7c9d08968ffc6b57a663af45c3e
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/88011
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
This commit is contained in:
Matt DeVillier 2025-06-09 11:42:25 -05:00
commit 7f03e3bd6c

View file

@ -605,7 +605,7 @@ enum cb_err efi_fv_set_option(struct region_device *rdev,
found_existing = ret == CB_SUCCESS;
if (found_existing) {
printk(BIOS_ERR, "found existing variable %s, match =%d\n", name, args.match);
printk(BIOS_DEBUG, "found existing variable %s, match = %d\n", name, args.match);
if (args.match)
return CB_SUCCESS;