"Das U-Boot" Source Tree
at master 18 lines 376 B view raw
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 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};