digicolor.c 476 B

12345678910111213141516171819
  1. /*
  2. * Support for Conexant Digicolor SoCs
  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 version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #include <asm/mach/arch.h>
  9. static const char *const digicolor_dt_compat[] __initconst = {
  10. "cnxt,cx92755",
  11. NULL,
  12. };
  13. DT_MACHINE_START(DIGICOLOR, "Conexant Digicolor (Flattened Device Tree)")
  14. .dt_compat = digicolor_dt_compat,
  15. MACHINE_END