aboutsummaryrefslogtreecommitdiffstats
path: root/net/lapb/lapb_timer.c
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2014-11-25 05:34:22 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-11-30 20:49:33 -0500
commitc6104fdbb2f83ad7696220e14fee54e14935f04b (patch)
tree8b4ddb26e2ef62b529bcde99e1899ed2154db74c /net/lapb/lapb_timer.c
parent2f0f609f2e3b874e8acf895459939903e6574d9c (diff)
exynos5440: free OPP table created during ->init()
OPP layer now supports freeing of OPPs and we should free them once they aren't useful anymore. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'net/lapb/lapb_timer.c')
0 files changed, 0 insertions, 0 deletions
08:11:00 -0400 committer Russell King <rmk@dyn-67.arm.linux.org.uk> 2005-05-05 08:11:00 -0400 [PATCH] ARM: Fix kernel stack offset calculations' href='/cgit/cgit.cgi/litmus-rt-budgetable-locks.git/.git/commit/include/asm-arm/thread_info.h?h=update_litmus_2019&id=4f7a18124c1a44858fb74a1c4234015009952959'>4f7a18124c1a
1da177e4c3f4




1da177e4c3f4
























dcd497f99a1e
1da177e4c3f4





5ba6d3febd49
1da177e4c3f4

c17fad11f310
cdaabbd74b15
1da177e4c3f4
d7f864be8323


1da177e4c3f4







c99e6efe1ba0
1da177e4c3f4











1da177e4c3f4










1da177e4c3f4
1de765c1e940
2d7c11bfc916

1da177e4c3f4
e7c1b32fd354
1da177e4c3f4
c17fad11f310




1da177e4c3f4



ae95bfbb2b67
1da177e4c3f4
ad187f956108

3d1228ead618
1da177e4c3f4



4baa99224306
1da177e4c3f4





1da177e4c3f4

d0420c83f39f
1da177e4c3f4


a583f1b54249

d0420c83f39f
1da177e4c3f4


0ddc9324b1a8
8a102eed9c4e
369842658a36
70c70d97809c
1da177e4c3f4
1da177e4c3f4

d0420c83f39f
1da177e4c3f4


8a102eed9c4e
369842658a36
70c70d97809c
1da177e4c3f4







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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
  
                                      











                                                                       
                           

                        



                                                 




                    
























                                                                          
                                                                                 





                                                                         
                                                                    

                                                                       
                                            
                                                                    
                                         


                                                                                   







                                                                         
                                                                         











                                                                         










                                                                                
                                 
                                                                

                                                                
                                 
                                                                
 




                                                              



                                                              
                                                     
 

                                                    
 



                                                             
                                                 





                                              

                                                
                                                           


                                                                         

                                 
                                                                               


                                  
                                                                              
                                  
                                  
                                  
 

                                                       
                                                        


                                                         
                                                 
                                                          
                                                  







                                                        
/*
 *  arch/arm/include/asm/thread_info.h
 *
 *  Copyright (C) 2002 Russell King.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#ifndef __ASM_ARM_THREAD_INFO_H
#define __ASM_ARM_THREAD_INFO_H

#ifdef __KERNEL__

#include <linux/compiler.h>
#include <asm/fpstate.h>

#define THREAD_SIZE_ORDER	1
#define THREAD_SIZE		8192
#define THREAD_START_SP		(THREAD_SIZE - 8)

#ifndef __ASSEMBLY__

struct task_struct;
struct exec_domain;

#include <asm/types.h>
#include <asm/domain.h>

typedef unsigned long mm_segment_t;

struct cpu_context_save {
	__u32	r4;
	__u32	r5;
	__u32	r6;
	__u32	r7;
	__u32	r8;
	__u32	r9;
	__u32	sl;
	__u32	fp;
	__u32	sp;
	__u32	pc;
	__u32	extra[2];		/* Xscale 'acc' register, etc */
};

/*
 * low level task data that entry.S needs immediate access to.