dtmachine.c 289 B

123456789101112131415
  1. #include <linux/kernel.h>
  2. #include <asm/v7m.h>
  3. #include <asm/mach/arch.h>
  4. static const char *const efm32gg_compat[] __initconst = {
  5. "efm32,dk3750",
  6. NULL
  7. };
  8. DT_MACHINE_START(EFM32DT, "EFM32 (Device Tree Support)")
  9. .dt_compat = efm32gg_compat,
  10. .restart = armv7m_restart,
  11. MACHINE_END