summaryrefslogtreecommitdiff
path: root/drivers/memory/memory-uclass.c
blob: d6d37fe7774dbc11b9cfcab8f3d56d64e422ac2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0+
/*
 * (C) Copyright 2022
 *     Texas Instruments Incorporated, <www.ti.com>
 */

#include <dm.h>

UCLASS_DRIVER(memory) = {
	.name = "memory",
	.id = UCLASS_MEMORY,
	.post_bind = dm_scan_fdt_dev,
};