Roger Quadros | 2c12037 | 2022-10-20 16:30:46 +0300 | [diff] [blame] | 1 | // 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 | |||||
9 | static const struct udevice_id sandbox_memory_match[] = { | ||||
10 | { .compatible = "sandbox,memory" }, | ||||
11 | { /* sentinel */ } | ||||
12 | }; | ||||
13 | |||||
14 | U_BOOT_DRIVER(sandbox_memory) = { | ||||
15 | .name = "sandbox_memory", | ||||
16 | .id = UCLASS_MEMORY, | ||||
17 | .of_match = sandbox_memory_match, | ||||
18 | }; |