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 | |
Tom Rini | abb9a04 | 2024-05-18 20:20:43 -0600 | [diff] [blame] | 8 | #include <common.h> |
Simon Glass | 507ab96 | 2021-12-04 08:56:31 -0700 | [diff] [blame] | 9 | #include <dm.h> |
| 10 | |
| 11 | static const struct udevice_id sandbox_efi_media_ids[] = { |
| 12 | { .compatible = "sandbox,efi-media" }, |
| 13 | { } |
| 14 | }; |
| 15 | |
| 16 | U_BOOT_DRIVER(sandbox_efi_media) = { |
| 17 | .name = "sandbox_efi_media", |
| 18 | .id = UCLASS_EFI_MEDIA, |
| 19 | .of_match = sandbox_efi_media_ids, |
| 20 | }; |