Explorar o código

[AVR32] Export intc_get_pending symbol

Oprofile needs to call intc_get_pending() in order to determine
whether a performance counter interrupt is pending.

Also, include the header which declares intc_get_pending() and fix the
definition to match the prototype.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen %!s(int64=17) %!d(string=hai) anos
pai
achega
597702aeb4
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      arch/avr32/mach-at32ap/intc.c

+ 3 - 1
arch/avr32/mach-at32ap/intc.c

@@ -13,6 +13,7 @@
 #include <linux/irq.h>
 #include <linux/irq.h>
 #include <linux/platform_device.h>
 #include <linux/platform_device.h>
 
 
+#include <asm/intc.h>
 #include <asm/io.h>
 #include <asm/io.h>
 
 
 #include "intc.h"
 #include "intc.h"
@@ -136,7 +137,8 @@ fail:
 	panic("Interrupt controller initialization failed!\n");
 	panic("Interrupt controller initialization failed!\n");
 }
 }
 
 
-unsigned long intc_get_pending(int group)
+unsigned long intc_get_pending(unsigned int group)
 {
 {
 	return intc_readl(&intc0, INTREQ0 + 4 * group);
 	return intc_readl(&intc0, INTREQ0 + 4 * group);
 }
 }
+EXPORT_SYMBOL_GPL(intc_get_pending);