alpine_machine.c 366 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Machine declaration for Alpine platforms.
  4. *
  5. * Copyright (C) 2015 Annapurna Labs Ltd.
  6. */
  7. #include <linux/of_platform.h>
  8. #include <asm/mach/arch.h>
  9. static const char * const al_match[] __initconst = {
  10. "al,alpine",
  11. NULL,
  12. };
  13. DT_MACHINE_START(AL_DT, "Annapurna Labs Alpine")
  14. .dt_compat = al_match,
  15. MACHINE_END