blob: 3255db0649611c45f516975e43e76fee202e9d78 [file] [log] [blame]
Simon Glass507ab962021-12-04 08:56:31 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * EFI_MEDIA driver for sandbox
4 *
5 * Copyright 2021 Google LLC
6 */
7
Simon Glass507ab962021-12-04 08:56:31 -07008#include <dm.h>
9
10static const struct udevice_id sandbox_efi_media_ids[] = {
11 { .compatible = "sandbox,efi-media" },
12 { }
13};
14
15U_BOOT_DRIVER(sandbox_efi_media) = {
16 .name = "sandbox_efi_media",
17 .id = UCLASS_EFI_MEDIA,
18 .of_match = sandbox_efi_media_ids,
19};