blob: ca182e3136fab4487a7dd02a5e1ad50ac51ea08a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2022 Renesas Electronics Corp.
*
*/
#include <platform_override.h>
#include <sbi_utils/fdt/fdt_helper.h>
static const struct fdt_match renesas_rzfive_match[] = {
{ .compatible = "renesas,r9a07g043f01" },
{ /* sentinel */ }
};
const struct platform_override renesas_rzfive = {
.match_table = renesas_rzfive_match,
};
|