repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
21 lines
403 B
C
21 lines
403 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Abilis Systems TB10x platform initialisation
|
|
*
|
|
* Copyright (C) Abilis Systems 2012
|
|
*
|
|
* Author: Christian Ruppert <christian.ruppert@abilis.com>
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <asm/mach_desc.h>
|
|
|
|
static const char *tb10x_compat[] __initdata = {
|
|
"abilis,arc-tb10x",
|
|
NULL,
|
|
};
|
|
|
|
MACHINE_START(TB10x, "tb10x")
|
|
.dt_compat = tb10x_compat,
|
|
MACHINE_END
|