blob: e012f6f2f4c4464c22a91633e26cd8da64efe1db [file] [log] [blame]
Simon Glass42b7f422021-12-04 08:56:31 -07001// 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
11UCLASS_DRIVER(efi_media) = {
12 .id = UCLASS_EFI_MEDIA,
13 .name = "efi_media",
14 .flags = DM_UC_FLAG_SEQ_ALIAS,
15};