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>
15 lines
234 B
C
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,
|
|
};
|