blob: a0c73f0545b221b4514711b67c3d2d7bb287fd93 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Architecture specific OF callbacks.
4 *
5 * Copyright (C) 2011 Texas Instruments Incorporated
6 * Author: Mark Salter <msalter@redhat.com>
7 */
8#include <linux/init.h>
9#include <linux/memblock.h>
10
11void __init early_init_dt_add_memory_arch(u64 base, u64 size)
12{
13 c6x_add_memory(base, size);
14}