xref: /openbmc/linux/arch/arm/mach-sunplus/sp7021.c (revision c832da79)
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 
9 static const char *sp7021_compat[] __initconst = {
10 	"sunplus,sp7021",
11 	NULL
12 };
13 
14 DT_MACHINE_START(SP7021_DT, "SP7021")
15 	.dt_compat	= sp7021_compat,
16 MACHINE_END
17