/* MN10300 clocksource * * Copyright (C) 2010 Red Hat, Inc. All Rights Reserved. * Written by Mark Salter (msalter@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Foundation; either version * 2 of the Licence, or (at your option) any later version. */ #include <linux/clocksource.h> #include <linux/init.h> #include <asm/timex.h> #include "internal.h"
static u64 mn10300_read(struct clocksource *cs) { return read_timestamp_counter(); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Mark Salter | 14 | 93.33% | 1 | 50.00% |
Thomas Gleixner | 1 | 6.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Mark Salter | 21 | 95.45% | 1 | 50.00% |
Thomas Gleixner | 1 | 4.55% | 1 | 50.00% |
Total | 22 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Mark Salter | 83 | 97.65% | 1 | 33.33% |
Thomas Gleixner | 2 | 2.35% | 2 | 66.67% |
Total | 85 | 100.00% | 3 | 100.00% |