diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-29 12:36:24 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-29 20:35:36 +0100 |
commit | 1238d5d868a56dcbc743d3ffc9bd3c920258b4cb (patch) | |
tree | 2520f316ed1cbadc7db52504b48b1e10ef86025c /arch/mips/sibyte/bcm1480 | |
parent | [MIPS] time: Make c0_compare_int_usable faster (diff) | |
download | linux-1238d5d868a56dcbc743d3ffc9bd3c920258b4cb.tar.xz linux-1238d5d868a56dcbc743d3ffc9bd3c920258b4cb.zip |
[MIPS] time: Fix cut'n'paste bug in Sibyte clockevent driver.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte/bcm1480')
-rw-r--r-- | arch/mips/sibyte/bcm1480/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sibyte/bcm1480/time.c b/arch/mips/sibyte/bcm1480/time.c index 699b5d242dd8..bbf19bfabccb 100644 --- a/arch/mips/sibyte/bcm1480/time.c +++ b/arch/mips/sibyte/bcm1480/time.c @@ -119,7 +119,7 @@ void __cpuinit sb1480_clockevent_init(void) sprintf(name, "bcm1480-counter %d", cpu); cd->name = name; cd->features = CLOCK_EVT_FEAT_PERIODIC | - CLOCK_EVT_MODE_ONESHOT; + CLOCK_EVT_FEAT_ONESHOT; clockevent_set_clock(cd, V_SCD_TIMER_FREQ); cd->max_delta_ns = clockevent_delta2ns(0x7fffff, cd); cd->min_delta_ns = clockevent_delta2ns(1, cd); |