]> Git Repo - linux.git/blob - arch/arm/mach-at91/at91rm9200.c
ACPI: bus: Avoid using CPPC if not supported by firmware
[linux.git] / arch / arm / mach-at91 / at91rm9200.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *  Setup code for AT91RM9200
4  *
5  *  Copyright (C) 2011 Atmel,
6  *                2011 Nicolas Ferre <[email protected]>
7  *                2012 Joachim Eastwood <[email protected]>
8  */
9
10 #include <linux/of.h>
11 #include <linux/of_platform.h>
12
13 #include <asm/mach/arch.h>
14
15 #include "generic.h"
16
17 static void __init at91rm9200_dt_device_init(void)
18 {
19         of_platform_default_populate(NULL, NULL, NULL);
20
21         at91rm9200_pm_init();
22 }
23
24 static const char *const at91rm9200_dt_board_compat[] __initconst = {
25         "atmel,at91rm9200",
26         NULL
27 };
28
29 DT_MACHINE_START(at91rm9200_dt, "Atmel AT91RM9200")
30         .init_machine   = at91rm9200_dt_device_init,
31         .dt_compat      = at91rm9200_dt_board_compat,
32 MACHINE_END
This page took 0.029828 seconds and 4 git commands to generate.