v2m-mps2.c 339 B

1234567891011121314151617
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (C) 2015 ARM Limited
  4. *
  5. * Author: Vladimir Murzin <[email protected]>
  6. */
  7. #include <asm/mach/arch.h>
  8. static const char *const mps2_compat[] __initconst = {
  9. "arm,mps2",
  10. NULL
  11. };
  12. DT_MACHINE_START(MPS2DT, "MPS2 (Device Tree Support)")
  13. .dt_compat = mps2_compat,
  14. MACHINE_END