summaryrefslogtreecommitdiff
path: root/drivers/memory/memory-sandbox.c
blob: f2ede5086374308aaaaf585742834a2e30a43bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: GPL-2.0+
/*
 * (C) Copyright 2022
 *     Texas Instruments Incorporated, <www.ti.com>
 */

#include <dm.h>

static const struct udevice_id sandbox_memory_match[] = {
	{ .compatible = "sandbox,memory" },
	{ /* sentinel */ }
};

U_BOOT_DRIVER(sandbox_memory) = {
	.name	= "sandbox_memory",
	.id	= UCLASS_MEMORY,
	.of_match = sandbox_memory_match,
};