Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-at91/at91rm9200.c
53396 views
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 <asm/mach/arch.h>
11
12
#include "generic.h"
13
14
static const char *const at91rm9200_dt_board_compat[] __initconst = {
15
"atmel,at91rm9200",
16
NULL
17
};
18
19
DT_MACHINE_START(at91rm9200_dt, "Atmel AT91RM9200")
20
.init_late = at91rm9200_pm_init,
21
.dt_compat = at91rm9200_dt_board_compat,
22
MACHINE_END
23
24