arch: m68k: Use existing CONFIG_MCFTMR instead of CFG_MCFTMR
[platform/kernel/u-boot.git] / drivers / memory / memory-sandbox.c
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 };