]> Git Repo - J-linux.git/blob - arch/arm/mach-meson/meson.c
Merge tag 'x86-cleanups-2024-01-08' of git://git.kernel.org/pub/scm/linux/kernel...
[J-linux.git] / arch / arm / mach-meson / meson.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2014 Carlo Caione <[email protected]>
4  */
5
6 #include <asm/mach/arch.h>
7
8 static const char * const meson_common_board_compat[] = {
9         "amlogic,meson6",
10         "amlogic,meson8",
11         "amlogic,meson8b",
12         "amlogic,meson8m2",
13         NULL,
14 };
15
16 DT_MACHINE_START(MESON, "Amlogic Meson platform")
17         .dt_compat      = meson_common_board_compat,
18         .l2c_aux_val    = 0,
19         .l2c_aux_mask   = ~0,
20 MACHINE_END
This page took 0.028521 seconds and 4 git commands to generate.