diff options
author | Niklas Cassel <niklas.cassel@axis.com> | 2015-02-06 11:18:29 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-02-20 17:53:09 -0500 |
commit | 44923c9cfa1a32c5a4013cb4b4853ddcdcd59142 (patch) | |
tree | cf7af5f3a029522b7250121e0face6d75576bd7c | |
parent | 8fc5ec70443f462804ba765acfed1667cff26a17 (diff) |
MIPS: sead3: Corrected get_c0_perfcount_int
Commit e9de688dac65 ("irqchip: mips-gic: Support local interrupts")
updated several platforms. This is a copy paste error.
Signed-off-by: Niklas Cassel <niklass@axis.com>
Reviewed-by: Andrew Bresticker <abrestic@chromium.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/9245/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/mti-sead3/sead3-time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mti-sead3/sead3-time.c b/arch/mips/mti-sead3/sead3-time.c index ec1dd2491f96..e1d69895fb1d 100644 --- a/arch/mips/mti-sead3/sead3-time.c +++ b/arch/mips/mti-sead3/sead3-time.c | |||
@@ -72,7 +72,7 @@ void read_persistent_clock(struct timespec *ts) | |||
72 | int get_c0_perfcount_int(void) | 72 | int get_c0_perfcount_int(void) |
73 | { | 73 | { |
74 | if (gic_present) | 74 | if (gic_present) |
75 | return gic_get_c0_compare_int(); | 75 | return gic_get_c0_perfcount_int(); |
76 | if (cp0_perfcount_irq >= 0) | 76 | if (cp0_perfcount_irq >= 0) |
77 | return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq; | 77 | return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq; |
78 | return -1; | 78 | return -1; |