summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-nspire/nspire.c
blob: 2fbfc23237ffe8afd3df22e16271b7b927d159c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: GPL-2.0-only
/*
 *	Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au>
 */

#include <asm/mach/arch.h>

static const char *const nspire_dt_match[] __initconst = {
	"ti,nspire",
	"ti,nspire-cx",
	"ti,nspire-tp",
	"ti,nspire-clp",
	NULL,
};

DT_MACHINE_START(NSPIRE, "TI-NSPIRE")
	.dt_compat	= nspire_dt_match,
MACHINE_END