summaryrefslogtreecommitdiff
path: root/openembedded/packages/lttng/lttng-modules-0.12/ltt-modules-fixes.patch
blob: 68abc7dda4100f8c458cf7752d0e65900c2b32a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Index: ltt-modules-0.12/ltt-statedump.c
===================================================================
--- ltt-modules-0.12.orig/ltt-statedump.c	2006-03-09 19:33:38.000000000 +0000
+++ ltt-modules-0.12/ltt-statedump.c	2006-03-22 12:43:30.000000000 +0000
@@ -19,8 +19,14 @@
 #include <linux/proc_fs.h>
 #include <linux/file.h>
 #include <linux/interrupt.h>
-#include <linux/irq.h>
 #include <linux/ltt/ltt-facility-statedump.h>
+#ifndef CONFIG_ARM
+#include <linux/irq.h>
+#else
+#include <asm/mach/irq.h>
+#endif
+
+
 
 #define NB_PROC_CHUNK 20
 
@@ -160,6 +166,7 @@
 	return 0;
 }
 
+#ifndef CONFIG_ARM
 static inline int ltt_enumerate_interrupts(void)
 {
 	unsigned int i;
@@ -182,7 +189,9 @@
 	
 	return 0;
 }
-
+#else
+#define ltt_enumerate_interrupts(x)
+#endif
 
 static inline int ltt_enumerate_process_states(void)
 {
Index: ltt-modules-0.12/Makefile
===================================================================
--- ltt-modules-0.12.orig/Makefile	2006-03-11 18:16:17.000000000 +0000
+++ ltt-modules-0.12/Makefile	2006-03-22 12:39:44.000000000 +0000
@@ -1,9 +1,7 @@
-ifneq ($(KERNELRELEASE),)
 ifneq ($(CONFIG_LTT),)
 	obj-m := ltt-control.o ltt-statedump.o
 endif
 
-else
 	KERNELDIR ?= /lib/modules/$(shell uname -r)/build
 	PWD := $(shell pwd)
 	KERNELRELEASE = $(shell cat $(KERNELDIR)/$(KBUILD_OUTPUT)/include/linux/version.h | sed -n 's/.*UTS_RELEASE.*\"\(.*\)\".*/\1/p')
@@ -21,4 +19,4 @@
 
 clean:
 	$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
-endif
+