Thomas Gleixner | 4505153 | 2019-05-29 16:57:47 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Christian Ruppert | 072eb69 | 2013-04-12 08:40:59 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Abilis Systems TB10x platform initialisation |
| 4 | * |
| 5 | * Copyright (C) Abilis Systems 2012 |
| 6 | * |
| 7 | * Author: Christian Ruppert <christian.ruppert@abilis.com> |
Christian Ruppert | 072eb69 | 2013-04-12 08:40:59 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
Christian Ruppert | 072eb69 | 2013-04-12 08:40:59 +0200 | [diff] [blame] | 10 | #include <linux/init.h> |
Christian Ruppert | 072eb69 | 2013-04-12 08:40:59 +0200 | [diff] [blame] | 11 | #include <asm/mach_desc.h> |
| 12 | |
Christian Ruppert | 072eb69 | 2013-04-12 08:40:59 +0200 | [diff] [blame] | 13 | static const char *tb10x_compat[] __initdata = { |
| 14 | "abilis,arc-tb10x", |
| 15 | NULL, |
| 16 | }; |
| 17 | |
| 18 | MACHINE_START(TB10x, "tb10x") |
| 19 | .dt_compat = tb10x_compat, |
Christian Ruppert | 072eb69 | 2013-04-12 08:40:59 +0200 | [diff] [blame] | 20 | MACHINE_END |