machines.c 359 B

123456789101112131415161718192021
  1. /*
  2. * arch/metag/kernel/machines.c
  3. *
  4. * Copyright (C) 2012 Imagination Technologies Ltd.
  5. *
  6. * Generic Meta Boards.
  7. */
  8. #include <linux/init.h>
  9. #include <asm/irq.h>
  10. #include <asm/mach/arch.h>
  11. static const char *meta_boards_compat[] __initdata = {
  12. "img,meta",
  13. NULL,
  14. };
  15. MACHINE_START(META, "Generic Meta")
  16. .dt_compat = meta_boards_compat,
  17. MACHINE_END