Release 4.14 arch/arm/mach-at91/at91sam9.c
/*
* Setup code for AT91SAM9
*
* Copyright (C) 2011 Atmel,
* 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
*
* Licensed under GPLv2 or later.
*/
#include <linux/of.h>
#include <linux/of_platform.h>
#include <asm/mach/arch.h>
#include <asm/system_misc.h>
#include "generic.h"
static void __init at91sam9_init(void)
{
of_platform_default_populate(NULL, NULL, NULL);
at91sam9_pm_init();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexandre Belloni | 18 | 85.71% | 3 | 60.00% |
Nicolas Ferre | 2 | 9.52% | 1 | 20.00% |
Kefeng Wang | 1 | 4.76% | 1 | 20.00% |
Total | 21 | 100.00% | 5 | 100.00% |
static const char *const at91_dt_board_compat[] __initconst = {
"atmel,at91sam9",
NULL
};
DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9")
/* Maintainer: Atmel */
.init_machine = at91sam9_init,
.dt_compat = at91_dt_board_compat,
MACHINE_END
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Nicolas Ferre | 32 | 45.71% | 5 | 31.25% |
Alexandre Belloni | 32 | 45.71% | 6 | 37.50% |
Jean-Christophe Plagniol-Villard | 2 | 2.86% | 2 | 12.50% |
Boris Brezillon | 2 | 2.86% | 1 | 6.25% |
Kefeng Wang | 1 | 1.43% | 1 | 6.25% |
Nico Pitre | 1 | 1.43% | 1 | 6.25% |
Total | 70 | 100.00% | 16 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.