mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 10:24:49 +00:00

As part of bringing the master branch back in to next, we need to allow for all of these changes to exist here. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
19 lines
367 B
C
19 lines
367 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* EFI_MEDIA driver for sandbox
|
|
*
|
|
* Copyright 2021 Google LLC
|
|
*/
|
|
|
|
#include <dm.h>
|
|
|
|
static const struct udevice_id sandbox_efi_media_ids[] = {
|
|
{ .compatible = "sandbox,efi-media" },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(sandbox_efi_media) = {
|
|
.name = "sandbox_efi_media",
|
|
.id = UCLASS_EFI_MEDIA,
|
|
.of_match = sandbox_efi_media_ids,
|
|
};
|