root/arch/arm/mach-imx/mach-imx50.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // SPDX-License-Identifier: GPL-2.0-or-later
   2 /*
   3  * Copyright 2013 Greg Ungerer <gerg@uclinux.org>
   4  * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
   5  * Copyright 2011 Linaro Ltd.
   6  */
   7 
   8 #include <linux/of_platform.h>
   9 #include <asm/mach/arch.h>
  10 
  11 #include "common.h"
  12 
  13 static const char * const imx50_dt_board_compat[] __initconst = {
  14         "fsl,imx50",
  15         NULL
  16 };
  17 
  18 DT_MACHINE_START(IMX50_DT, "Freescale i.MX50 (Device Tree Support)")
  19         .dt_compat      = imx50_dt_board_compat,
  20 MACHINE_END

/* [<][>][^][v][top][bottom][index][help] */