Files
u-boot/drivers/block/efi-media-uclass.c
Simon Glass 284c266140 efi: Rename the media device
The current name of 'efi_media' is annoying in that it must be given
with 'bootflow scan'. We would prefer to use 'bootflow scan efi', for
example.

Rename the driver to 'efi'.

Signed-off-by: Simon Glass <sjg@chromium.org>
2025-06-02 08:25:41 -06:00

15 lines
234 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Uclass for EFI media devices
*
* Copyright 2021 Google LLC
*/
#include <dm.h>
UCLASS_DRIVER(efi_media) = {
.id = UCLASS_EFI_MEDIA,
.name = "efi",
.flags = DM_UC_FLAG_SEQ_ALIAS,
};