mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 13:41:55 +00:00
0aa94eea8d
This patch aims to add an initial support for Sunplus SP7021 SoC. Signed-off-by: Qin Jian <qinjian@cqplus1.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
17 lines
355 B
C
17 lines
355 B
C
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
/*
|
|
* Copyright (C) Sunplus Technology Co., Ltd.
|
|
* All rights reserved.
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <asm/mach/arch.h>
|
|
|
|
static const char *sp7021_compat[] __initconst = {
|
|
"sunplus,sp7021",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(SP7021_DT, "SP7021")
|
|
.dt_compat = sp7021_compat,
|
|
MACHINE_END
|