mach-ls1021a.c 581 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2013-2014 Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. */
  9. #include <asm/mach/arch.h>
  10. #include "common.h"
  11. static const char * const ls1021a_dt_compat[] __initconst = {
  12. "fsl,ls1021a",
  13. NULL,
  14. };
  15. DT_MACHINE_START(LS1021A, "Freescale LS1021A")
  16. .smp = smp_ops(ls1021a_smp_ops),
  17. .dt_compat = ls1021a_dt_compat,
  18. MACHINE_END