From 082666ec3ee1b52e1db3b8bb603414c1e145e7f0 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Mon, 11 Aug 2025 15:44:00 -0600 Subject: [PATCH] efi: Rename efi_block_device driver This driver name conflicts with another driver in U-Boot. Rename it. Signed-off-by: Simon Glass --- lib/efi_driver/efi_block_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c index 070747de515..09f6afbb814 100644 --- a/lib/efi_driver/efi_block_device.c +++ b/lib/efi_driver/efi_block_device.c @@ -269,7 +269,7 @@ static const struct efi_driver_ops driver_ops = { }; /* Identify as EFI driver */ -U_BOOT_DRIVER(efi_block) = { +U_BOOT_DRIVER(efi_block_drv) = { .name = "EFI block driver", .id = UCLASS_EFI_LOADER, .ops = &driver_ops,