1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Machine declaration for Alpine platforms.
4 *
5 * Copyright (C) 2015 Annapurna Labs Ltd.
6 */
7
8#include <asm/mach/arch.h>
9
10static const char * const al_match[] __initconst = {
11 "al,alpine",
12 NULL,
13};
14
15DT_MACHINE_START(AL_DT, "Annapurna Labs Alpine")
16 .dt_compat = al_match,
17MACHINE_END
18

source code of linux/arch/arm/mach-alpine/alpine_machine.c