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