/* * Copyright 2001 MontaVista Software Inc. * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net * Copyright (c) 2003, 2004 Maciej W. Rozycki * * Common time service routines for MIPS machines. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. */ #include <linux/bug.h> #include <linux/clockchips.h> #include <linux/types.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/sched.h> #include <linux/param.h> #include <linux/time.h> #include <linux/timex.h> #include <linux/smp.h> #include <linux/spinlock.h> #include <linux/export.h> #include <asm/cpu-features.h> #include <asm/cpu-type.h> #include <asm/div64.h> #include <asm/time.h> /* * forward reference */ DEFINE_SPINLOCK(rtc_lock); EXPORT_SYMBOL(rtc_lock);
int __weak rtc_mips_set_time(unsigned long sec) { return -ENODEV; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 6 | 42.86% | 1 | 25.00% |
Linus Torvalds | 4 | 28.57% | 1 | 25.00% |
Ralf Bächle | 2 | 14.29% | 1 | 25.00% |
Luuk Paulussen | 2 | 14.29% | 1 | 25.00% |
Total | 14 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 10 | 62.50% | 1 | 33.33% |
Andrew Morton | 5 | 31.25% | 1 | 33.33% |
Yoichi Yuasa | 1 | 6.25% | 1 | 33.33% |
Total | 16 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 9 | 81.82% | 1 | 33.33% |
Dmitri Vorobiev | 1 | 9.09% | 1 | 33.33% |
David Howells | 1 | 9.09% | 1 | 33.33% |
Total | 11 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 47 | 77.05% | 2 | 20.00% |
Linus Torvalds (pre-git) | 8 | 13.11% | 4 | 40.00% |
Thomas Bogendoerfer | 2 | 3.28% | 1 | 10.00% |
Atsushi Nemoto | 2 | 3.28% | 1 | 10.00% |
Linus Torvalds | 1 | 1.64% | 1 | 10.00% |
Lucas De Marchi | 1 | 1.64% | 1 | 10.00% |
Total | 61 | 100.00% | 10 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 14 | 53.85% | 1 | 12.50% |
Atsushi Nemoto | 5 | 19.23% | 3 | 37.50% |
Maciej W. Rozycki | 3 | 11.54% | 1 | 12.50% |
Linus Torvalds | 2 | 7.69% | 1 | 12.50% |
Andrew Morton | 1 | 3.85% | 1 | 12.50% |
Linus Torvalds (pre-git) | 1 | 3.85% | 1 | 12.50% |
Total | 26 | 100.00% | 8 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 141 | 61.04% | 11 | 35.48% |
Linus Torvalds (pre-git) | 36 | 15.58% | 6 | 19.35% |
Linus Torvalds | 17 | 7.36% | 1 | 3.23% |
Andrew Morton | 12 | 5.19% | 1 | 3.23% |
Atsushi Nemoto | 7 | 3.03% | 3 | 9.68% |
James Hogan | 5 | 2.16% | 1 | 3.23% |
Maciej W. Rozycki | 3 | 1.30% | 1 | 3.23% |
Luuk Paulussen | 2 | 0.87% | 1 | 3.23% |
David Howells | 2 | 0.87% | 1 | 3.23% |
Thomas Bogendoerfer | 2 | 0.87% | 1 | 3.23% |
Paul Gortmaker | 1 | 0.43% | 1 | 3.23% |
Dmitri Vorobiev | 1 | 0.43% | 1 | 3.23% |
Yoichi Yuasa | 1 | 0.43% | 1 | 3.23% |
Lucas De Marchi | 1 | 0.43% | 1 | 3.23% |
Total | 231 | 100.00% | 31 | 100.00% |