https://github.com/torvalds/linux
Raw File
Tip revision: d1f2d51b711a3b7f1ae1b46701c769c1d580fa7f authored by Linus Torvalds on 07 September 2024, 18:29:13 UTC
Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
Tip revision: d1f2d51
axxia.c
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Support for the LSI Axxia SoC devices based on ARM cores.
 *
 * Copyright (C) 2012 LSI
 */
#include <linux/init.h>
#include <asm/mach/arch.h>

static const char *const axxia_dt_match[] __initconst = {
	"lsi,axm5516",
	"lsi,axm5516-sim",
	"lsi,axm5516-emu",
	NULL
};

DT_MACHINE_START(AXXIA_DT, "LSI Axxia AXM55XX")
	.dt_compat = axxia_dt_match,
MACHINE_END
back to top