M7350/kernel/arch/arc/plat-tb10x/tb10x.c

33 lines
1012 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
2024-09-09 08:57:42 +00:00
* Abilis Systems TB10x platform initialisation
2024-09-09 08:52:07 +00:00
*
2024-09-09 08:57:42 +00:00
* Copyright (C) Abilis Systems 2012
*
* Author: Christian Ruppert <christian.ruppert@abilis.com>
2024-09-09 08:52:07 +00:00
*
* This program is free software; you can redistribute it and/or modify
2024-09-09 08:57:42 +00:00
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
2024-09-09 08:52:07 +00:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
2024-09-09 08:57:42 +00:00
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2024-09-09 08:52:07 +00:00
*/
2024-09-09 08:57:42 +00:00
#include <linux/init.h>
#include <asm/mach_desc.h>
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
static const char *tb10x_compat[] __initdata = {
"abilis,arc-tb10x",
NULL,
2024-09-09 08:52:07 +00:00
};
2024-09-09 08:57:42 +00:00
MACHINE_START(TB10x, "tb10x")
.dt_compat = tb10x_compat,
MACHINE_END