summaryrefslogtreecommitdiff
path: root/drivers/block/sb_efi_media.c
blob: 52af155a600109c572ef4936dccc59e65337d7d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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,
};