• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  arch/metag/kernel/machines.c
3  *
4  *  Copyright (C) 2012 Imagination Technologies Ltd.
5  *
6  *  Generic Meta Boards.
7  */
8 
9 #include <linux/init.h>
10 #include <asm/irq.h>
11 #include <asm/mach/arch.h>
12 
13 static const char *meta_boards_compat[] __initdata = {
14 	"img,meta",
15 	NULL,
16 };
17 
18 MACHINE_START(META, "Generic Meta")
19 	.dt_compat	= meta_boards_compat,
20 MACHINE_END
21