mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
21 lines
387 B
C
21 lines
387 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/*
|
||
|
* EFI_MEDIA driver for sandbox
|
||
|
*
|
||
|
* Copyright 2021 Google LLC
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#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,
|
||
|
};
|