summaryrefslogtreecommitdiffstats
path: root/arch/kvx/lib/dtb.c
blob: 09898017c9b5f8ad75b906e26dadaa98fd02fc1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2019 Kalray Inc.
 */

#include <common.h>
#include <init.h>
#include <of.h>

static int of_kvx_init(void)
{
	barebox_register_fdt(boot_dtb);

	return 0;
}
core_initcall(of_kvx_init);