/* * linux/arch/arm/mach-mmp/mmp2-dt.c * * Copyright (C) 2012 Marvell Technology Group Ltd. * Author: Haojian Zhuang <haojian.zhuang@marvell.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * publishhed by the Free Software Foundation. */ #include <linux/io.h> #include <linux/irqchip.h> #include <linux/of_platform.h> #include <linux/clk-provider.h> #include <asm/mach/arch.h> #include <asm/mach/time.h> #include <asm/hardware/cache-tauros2.h> #include "common.h" extern void __init mmp_dt_init_timer(void);
static void __init mmp_init_time(void) { #ifdef CONFIG_CACHE_TAUROS2 tauros2_init(0); #endif mmp_dt_init_timer(); of_clk_init(NULL); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Chao Xie | 15 | 55.56% | 1 | 50.00% |
Haojian Zhuang | 12 | 44.44% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Haojian Zhuang | 72 | 74.23% | 2 | 40.00% |
Chao Xie | 22 | 22.68% | 1 | 20.00% |
Nico Pitre | 2 | 2.06% | 1 | 20.00% |
Stephen Warren | 1 | 1.03% | 1 | 20.00% |
Total | 97 | 100.00% | 5 | 100.00% |