Skip to content
Snippets Groups Projects
131-MIPS-export-get_c0_perfcount_int.patch 1.92 KiB
Newer Older
From: Felix Fietkau <nbd@openwrt.org>
Date: Thu, 23 Jul 2015 18:54:49 +0200
Subject: [PATCH] MIPS: export get_c0_perfcount_int()

get_c0_perfcount_int is tested from oprofile code. If oprofile is
compiled as module, get_c0_perfcount_int needs to be exported, otherwise
it cannot be resolved.

Fixes: a669efc4a3b4 ("MIPS: Add hook to get C0 performance counter interrupt")
Cc: stable@vger.kernel.org # v3.19+
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
---

--- a/arch/mips/ath79/setup.c
+++ b/arch/mips/ath79/setup.c
jogo's avatar
jogo committed
@@ -181,6 +181,7 @@ const char *get_system_type(void)
jogo's avatar
jogo committed
 	return ath79_sys_type;
 }
+EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
 
jogo's avatar
jogo committed
 int get_c0_perfcount_int(void)
 {
--- a/arch/mips/lantiq/irq.c
+++ b/arch/mips/lantiq/irq.c
jogo's avatar
jogo committed
@@ -461,6 +461,7 @@ int __init icu_of_init(struct device_nod
 
 	return 0;
 }
+EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
 
jogo's avatar
jogo committed
 int get_c0_perfcount_int(void)
 {
--- a/arch/mips/mti-malta/malta-time.c
+++ b/arch/mips/mti-malta/malta-time.c
jogo's avatar
jogo committed
@@ -163,6 +163,7 @@ unsigned int get_c0_compare_int(void)
jogo's avatar
jogo committed
 	return mips_cpu_timer_irq;
 }
+EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
 
jogo's avatar
jogo committed
 static void __init init_rtc(void)
 {
--- a/arch/mips/mti-sead3/sead3-time.c
+++ b/arch/mips/mti-sead3/sead3-time.c
jogo's avatar
jogo committed
@@ -85,6 +85,7 @@ unsigned int get_c0_compare_int(void)
 		return gic_get_c0_compare_int();
 	return MIPS_CPU_IRQ_BASE + cp0_compare_irq;
 }
+EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
 
jogo's avatar
jogo committed
 void __init plat_time_init(void)
 {
--- a/arch/mips/pistachio/time.c
+++ b/arch/mips/pistachio/time.c
jogo's avatar
jogo committed
@@ -21,6 +21,7 @@ unsigned int get_c0_compare_int(void)
jogo's avatar
jogo committed
 	return gic_get_c0_compare_int();
 }
+EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
 
jogo's avatar
jogo committed
 int get_c0_perfcount_int(void)
 {
--- a/arch/mips/ralink/irq.c
+++ b/arch/mips/ralink/irq.c
jogo's avatar
jogo committed
@@ -95,6 +95,7 @@ unsigned int get_c0_compare_int(void)
jogo's avatar
jogo committed
 	return CP0_LEGACY_COMPARE_IRQ;
 }
+EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
 
jogo's avatar
jogo committed
 static void ralink_intc_irq_handler(unsigned int irq, struct irq_desc *desc)