/* * Precise Delay Loops for avr32 * * Copyright (C) 1993 Linus Torvalds * Copyright (C) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz> * Copyright (C) 2005-2006 Atmel Corporation * * 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 * published by the Free Software Foundation. */ #include <linux/delay.h> #include <linux/module.h> #include <linux/timex.h> #include <linux/param.h> #include <linux/types.h> #include <linux/init.h> #include <asm/processor.h> #include <asm/sysreg.h>
int read_current_timer(unsigned long *timer_value) { *timer_value = sysreg_read(COUNT); return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Håvard Skinnemoen | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Håvard Skinnemoen | 42 | 100.00% | 1 | 100.00% |
Total | 42 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Håvard Skinnemoen | 23 | 100.00% | 1 | 100.00% |
Total | 23 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Håvard Skinnemoen | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Håvard Skinnemoen | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Håvard Skinnemoen | 139 | 95.86% | 2 | 66.67% |
Andrew Morton | 6 | 4.14% | 1 | 33.33% |
Total | 145 | 100.00% | 3 | 100.00% |