mach-ls1021a.c 371 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright 2013-2014 Freescale Semiconductor, Inc.
  4. */
  5. #include <asm/mach/arch.h>
  6. #include "common.h"
  7. static const char * const ls1021a_dt_compat[] __initconst = {
  8. "fsl,ls1021a",
  9. NULL,
  10. };
  11. DT_MACHINE_START(LS1021A, "Freescale LS1021A")
  12. .smp = smp_ops(ls1021a_smp_ops),
  13. .dt_compat = ls1021a_dt_compat,
  14. MACHINE_END