1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Uclass for EFI media devices 4 * 5 * Copyright 2021 Google LLC 6 */ 7 8 #include <common.h> 9 #include <dm.h> 10 11 UCLASS_DRIVER(efi_media) = { 12 .id = UCLASS_EFI_MEDIA, 13 .name = "efi_media", 14 .flags = DM_UC_FLAG_SEQ_ALIAS, 15 }; 16