Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-axxia/axxia.c
29266 views
1
// SPDX-License-Identifier: GPL-2.0-or-later
2
/*
3
* Support for the LSI Axxia SoC devices based on ARM cores.
4
*
5
* Copyright (C) 2012 LSI
6
*/
7
#include <linux/init.h>
8
#include <asm/mach/arch.h>
9
10
static const char *const axxia_dt_match[] __initconst = {
11
"lsi,axm5516",
12
"lsi,axm5516-sim",
13
"lsi,axm5516-emu",
14
NULL
15
};
16
17
DT_MACHINE_START(AXXIA_DT, "LSI Axxia AXM55XX")
18
.dt_compat = axxia_dt_match,
19
MACHINE_END
20
21