summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiklas Cassel <niklas.cassel@axis.com>2015-02-06 17:18:29 +0100
committerRalf Baechle <ralf@linux-mips.org>2015-02-20 23:53:09 +0100
commit44923c9cfa1a32c5a4013cb4b4853ddcdcd59142 (patch)
treecf7af5f3a029522b7250121e0face6d75576bd7c
parent8fc5ec70443f462804ba765acfed1667cff26a17 (diff)
downloadlinux-44923c9cfa1a32c5a4013cb4b4853ddcdcd59142.tar.gz
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.c2
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)
 int get_c0_perfcount_int(void)
 {
 	if (gic_present)
-		return gic_get_c0_compare_int();
+		return gic_get_c0_perfcount_int();
 	if (cp0_perfcount_irq >= 0)
 		return MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
 	return -1;