1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright 2026 Stefan Dösinger 4 */ 5 6 #include <asm/mach/arch.h> 7 #include <linux/init.h> 8 9 static const char *const zx297520v3_dt_compat[] __initconst = { 10 "zte,zx297520v3", 11 NULL, 12 }; 13 14 DT_MACHINE_START(ZX, "ZTE zx297520v3 (Device Tree)") 15 .dt_compat = zx297520v3_dt_compat, 16 MACHINE_END 17