12345678910111213141516171819202122232425262728293031323334 |
- #include <linux/init.h>
- #include <asm/mach_desc.h>
- static const char *simulation_compat[] __initconst = {
- "snps,nsim",
- "snps,nsim_hs",
- "snps,nsimosci",
- "snps,nsimosci_hs",
- "snps,zebu_hs",
- NULL,
- };
- MACHINE_START(SIMULATION, "simulation")
- .dt_compat = simulation_compat,
- MACHINE_END
|