mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 04:25:27 +08:00
a5a1d1c291
There is no point in having an extra type for extra confusion. u64 is unambiguous. Conversion was done with the following coccinelle script: @rem@ @@ -typedef u64 cycle_t; @fix@ typedef cycle_t; @@ -cycle_t +u64 Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: John Stultz <john.stultz@linaro.org>
35 lines
898 B
C
35 lines
898 B
C
/* 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();
|
|
}
|
|
|
|
static struct clocksource clocksource_mn10300 = {
|
|
.name = "TSC",
|
|
.rating = 200,
|
|
.read = mn10300_read,
|
|
.mask = CLOCKSOURCE_MASK(32),
|
|
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
|
};
|
|
|
|
int __init init_clocksource(void)
|
|
{
|
|
startup_timestamp_counter();
|
|
clocksource_register_hz(&clocksource_mn10300, MN10300_TSCCLK);
|
|
return 0;
|
|
}
|