1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2/*
3 * Copyright (C) Sunplus Technology Co., Ltd.
4 *       All rights reserved.
5 */
6#include <linux/kernel.h>
7#include <asm/mach/arch.h>
8
9static const char *sp7021_compat[] __initconst = {
10	"sunplus,sp7021",
11	NULL
12};
13
14DT_MACHINE_START(SP7021_DT, "SP7021")
15	.dt_compat	= sp7021_compat,
16MACHINE_END
17