1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au> 4 */ 5 6 #include <asm/mach/arch.h> 7 8 static const char *const nspire_dt_match[] __initconst = { 9 "ti,nspire", 10 "ti,nspire-cx", 11 "ti,nspire-tp", 12 "ti,nspire-clp", 13 NULL, 14 }; 15 16 DT_MACHINE_START(NSPIRE, "TI-NSPIRE") 17 .dt_compat = nspire_dt_match, 18 MACHINE_END 19