memory-sandbox.c 376 B

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