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 10 static const char * const al_match[] __initconst = { 11 "al,alpine", 12 NULL, 13 }; 14 15 DT_MACHINE_START(AL_DT, "Annapurna Labs Alpine") 16 .dt_compat = al_match, 17 MACHINE_END 18