diff options
Diffstat (limited to 'arch/arm/mach-hisi/hisilicon.c')
-rw-r--r-- | arch/arm/mach-hisi/hisilicon.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-hisi/hisilicon.c b/arch/arm/mach-hisi/hisilicon.c index 741faf3e7100..2bfbe3f1392d 100644 --- a/arch/arm/mach-hisi/hisilicon.c +++ b/arch/arm/mach-hisi/hisilicon.c | |||
@@ -88,3 +88,15 @@ DT_MACHINE_START(HI3620, "Hisilicon Hi3620 (Flattened Device Tree)") | |||
88 | .smp = smp_ops(hi3xxx_smp_ops), | 88 | .smp = smp_ops(hi3xxx_smp_ops), |
89 | .restart = hi3xxx_restart, | 89 | .restart = hi3xxx_restart, |
90 | MACHINE_END | 90 | MACHINE_END |
91 | |||
92 | static const char *hix5hd2_compat[] __initconst = { | ||
93 | "hisilicon,hix5hd2", | ||
94 | NULL, | ||
95 | }; | ||
96 | |||
97 | DT_MACHINE_START(HIX5HD2_DT, "Hisilicon HIX5HD2 (Flattened Device Tree)") | ||
98 | .dt_compat = hix5hd2_compat, | ||
99 | .init_late = hi3xxx_init_late, | ||
100 | .smp = smp_ops(hix5hd2_smp_ops), | ||
101 | .restart = hi3xxx_restart, | ||
102 | MACHINE_END | ||