aboutsummaryrefslogtreecommitdiff
path: root/arch/metag/kernel/machines.c
blob: 1edf6ba193b15328fba4c9a714d51cf8c64a9d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *  arch/metag/kernel/machines.c
 *
 *  Copyright (C) 2012 Imagination Technologies Ltd.
 *
 *  Generic Meta Boards.
 */

#include <linux/init.h>
#include <asm/irq.h>
#include <asm/mach/arch.h>

static const char *meta_boards_compat[] __initdata = {
	"img,meta",
	NULL,
};

MACHINE_START(META, "Generic Meta")
	.dt_compat	= meta_boards_compat,
MACHINE_END