root/arch/arm/mach-lpc18xx/board-dt.c

/* [<][>][^][v][top][bottom][index][help] */
   1 /*
   2  * Device Tree board file for NXP LPC18xx/43xx
   3  *
   4  * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
   5  *
   6  * This file is licensed under the terms of the GNU General Public
   7  * License version 2. This program is licensed "as is" without any
   8  * warranty of any kind, whether express or implied.
   9  */
  10 
  11 #include <asm/mach/arch.h>
  12 
  13 static const char *const lpc18xx_43xx_compat[] __initconst = {
  14         "nxp,lpc1850",
  15         "nxp,lpc4350",
  16         "nxp,lpc4370",
  17         NULL
  18 };
  19 
  20 DT_MACHINE_START(LPC18XXDT, "NXP LPC18xx/43xx (Device Tree)")
  21         .dt_compat = lpc18xx_43xx_compat,
  22 MACHINE_END

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