arch: m68k: Use existing CONFIG_MCFTMR instead of CFG_MCFTMR
[platform/kernel/u-boot.git] / drivers / memory / memory-uclass.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 UCLASS_DRIVER(memory) = {
10         .name = "memory",
11         .id = UCLASS_MEMORY,
12         .post_bind = dm_scan_fdt_dev,
13 };