blob: e49790181051d4071e001db9336d9239003824f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// SPDX-License-Identifier: GPL-2.0
/*
* 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
|