tb10x.c 403 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Abilis Systems TB10x platform initialisation
  4. *
  5. * Copyright (C) Abilis Systems 2012
  6. *
  7. * Author: Christian Ruppert <[email protected]>
  8. */
  9. #include <linux/init.h>
  10. #include <asm/mach_desc.h>
  11. static const char *tb10x_compat[] __initdata = {
  12. "abilis,arc-tb10x",
  13. NULL,
  14. };
  15. MACHINE_START(TB10x, "tb10x")
  16. .dt_compat = tb10x_compat,
  17. MACHINE_END