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
alpine_machine.c
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Machine declaration for Alpine platforms.
 *
 * Copyright (C) 2015 Annapurna Labs Ltd.
 */

#include <asm/mach/arch.h>

static const char * const al_match[] __initconst = {
	"al,alpine",
	NULL,
};

DT_MACHINE_START(AL_DT, "Annapurna Labs Alpine")
	.dt_compat	= al_match,
MACHINE_END
back to top