blob: f2ede5086374308aaaaf585742834a2e30a43bb3 [file] [log] [blame]
Roger Quadros2c120372022-10-20 16:30:46 +03001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2022
4 * Texas Instruments Incorporated, <www.ti.com>
5 */
6
7#include <dm.h>
8
9static const struct udevice_id sandbox_memory_match[] = {
10 { .compatible = "sandbox,memory" },
11 { /* sentinel */ }
12};
13
14U_BOOT_DRIVER(sandbox_memory) = {
15 .name = "sandbox_memory",
16 .id = UCLASS_MEMORY,
17 .of_match = sandbox_memory_match,
18};