blob: e9364b843641644611dd0c13d9b913070568784b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Uwe Kleine-König6d85e2b2011-11-17 14:36:23 +01002#include <linux/kernel.h>
3
4#include <asm/v7m.h>
5
6#include <asm/mach/arch.h>
7
8static const char *const efm32gg_compat[] __initconst = {
9 "efm32,dk3750",
10 NULL
11};
12
13DT_MACHINE_START(EFM32DT, "EFM32 (Device Tree Support)")
14 .dt_compat = efm32gg_compat,
15 .restart = armv7m_restart,
16MACHINE_END