]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/wlags-modules/files/includes.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / wlags-modules / files / includes.patch
1 I keep all files in a flat directory. This patch changes the #include lines
2 accordingly.
3
4 #
5 # Patch managed by http://www.holgerschurig.de/patcher.html
6 #
7
8 --- wlags/wl_main.c~includes
9 +++ wlags/wl_main.c
10 @@ -79,7 +79,7 @@
11  /*******************************************************************************
12   *  include files
13   ******************************************************************************/
14 -#include <wireless/wl_version.h>
15 +#include "wl_version.h"
16  
17  #include <linux/module.h>
18  #include <linux/types.h>
19 @@ -104,29 +104,29 @@
20  #include <linux/if_arp.h>
21  #include <linux/ioport.h>
22  
23 -#include <hcf/debug.h>
24 +#include "debug.h"
25  
26 -#include <hcf.h>
27 -#include <dhf.h>
28 -#include <hcfdef.h>
29 +#include "hcf.h"
30 +#include "dhf.h"
31 +#include "hcfdef.h"
32  
33 -#include <wireless/wl_if.h>
34 -#include <wireless/wl_internal.h>
35 -#include <wireless/wl_util.h>
36 -#include <wireless/wl_main.h>
37 -#include <wireless/wl_netdev.h>
38 -#include <wireless/wl_wext.h>
39 +#include "wl_if.h"
40 +#include "wl_internal.h"
41 +#include "wl_util.h"
42 +#include "wl_main.h"
43 +#include "wl_netdev.h"
44 +#include "wl_wext.h"
45  
46  #ifdef USE_PROFILE
47 -#include <wireless/wl_profile.h>
48 +#include "wl_profile.h"
49  #endif  /* USE_PROFILE */
50  
51  #ifdef BUS_PCMCIA
52 -#include <wireless/wl_cs.h>
53 +#include "wl_cs.h"
54  #endif  /* BUS_PCMCIA */
55  
56  #ifdef BUS_PCI
57 -#include <wireless/wl_pci.h>
58 +#include "wl_pci.h"
59  #endif  /* BUS_PCI */
60  
61  
62 --- wlags/wl_cs.c~includes
63 +++ wlags/wl_cs.c
64 @@ -79,7 +79,7 @@
65  /*******************************************************************************
66   *  include files
67   ******************************************************************************/
68 -#include <wireless/wl_version.h>
69 +#include "wl_version.h"
70  
71  #include <linux/kernel.h>
72  #include <linux/sched.h>
73 @@ -108,18 +108,18 @@
74  #include <pcmcia/cisreg.h>
75  #include <pcmcia/ciscode.h>
76  #include <pcmcia/ds.h>
77 -#include <hcf/debug.h>
78 +#include "debug.h"
79  
80 -#include <hcf.h>
81 -#include <dhf.h>
82 -#include <hcfdef.h>
83 +#include "hcf.h"
84 +#include "dhf.h"
85 +#include "hcfdef.h"
86  
87 -#include <wireless/wl_if.h>
88 -#include <wireless/wl_internal.h>
89 -#include <wireless/wl_util.h>
90 -#include <wireless/wl_main.h>
91 -#include <wireless/wl_netdev.h>
92 -#include <wireless/wl_cs.h>
93 +#include "wl_if.h"
94 +#include "wl_internal.h"
95 +#include "wl_util.h"
96 +#include "wl_main.h"
97 +#include "wl_netdev.h"
98 +#include "wl_cs.h"
99  
100  
101  
102 --- wlags/wl_enc.c~includes
103 +++ wlags/wl_enc.c
104 @@ -78,12 +78,12 @@
105  /*******************************************************************************
106   *  include files
107   ******************************************************************************/
108 -#include <wireless/wl_version.h>
109 +#include "wl_version.h"
110  
111 -#include <hcf/debug.h>
112 -#include <hcf.h>
113 +#include "debug.h"
114 +#include "hcf.h"
115  
116 -#include <wireless/wl_enc.h>
117 +#include "wl_enc.h"
118  
119  
120  
121 --- wlags/wl_netdev.c~includes
122 +++ wlags/wl_netdev.c
123 @@ -79,7 +79,7 @@
124  /*******************************************************************************
125   * include files
126   ******************************************************************************/
127 -#include <wireless/wl_version.h>
128 +#include "wl_version.h"
129  
130  #include <linux/module.h>
131  #include <linux/types.h>
132 @@ -104,30 +104,30 @@
133  #include <linux/if_arp.h>
134  #include <linux/ioport.h>
135  
136 -#include <hcf/debug.h>
137 +#include "debug.h"
138  
139 -#include <hcf.h>
140 -#include <dhf.h>
141 -#include <hcfdef.h>
142 +#include "hcf.h"
143 +#include "dhf.h"
144 +#include "hcfdef.h"
145  
146 -#include <wireless/wl_if.h>
147 -#include <wireless/wl_internal.h>
148 -#include <wireless/wl_util.h>
149 -#include <wireless/wl_priv.h>
150 -#include <wireless/wl_main.h>
151 -#include <wireless/wl_netdev.h>
152 -#include <wireless/wl_wext.h>
153 +#include "wl_if.h"
154 +#include "wl_internal.h"
155 +#include "wl_util.h"
156 +#include "wl_priv.h"
157 +#include "wl_main.h"
158 +#include "wl_netdev.h"
159 +#include "wl_wext.h"
160  
161  #ifdef USE_PROFILE
162 -#include <wireless/wl_profile.h>
163 +#include "wl_profile.h"
164  #endif  /* USE_PROFILE */
165  
166  #ifdef BUS_PCMCIA
167 -#include <wireless/wl_cs.h>
168 +#include "wl_cs.h"
169  #endif  /* BUS_PCMCIA */
170  
171  #ifdef BUS_PCI
172 -#include <wireless/wl_pci.h>
173 +#include "wl_pci.h"
174  #endif  /* BUS_PCI */
175  
176  
177 --- wlags/wl_priv.c~includes
178 +++ wlags/wl_priv.c
179 @@ -78,24 +78,24 @@
180  /*******************************************************************************
181   * include files
182   ******************************************************************************/
183 -#include <wireless/wl_version.h>
184 +#include "wl_version.h"
185  
186  #include <linux/if_arp.h>
187  #include <linux/ioport.h>
188  #include <linux/delay.h> 
189  #include <asm/uaccess.h>
190  
191 -#include <hcf/debug.h>
192 -#include <hcf.h>
193 -#include <hcfdef.h>
194 +#include "debug.h"
195 +#include "hcf.h"
196 +#include "hcfdef.h"
197  
198 -#include <wireless/wl_if.h>
199 -#include <wireless/wl_internal.h>
200 -#include <wireless/wl_enc.h>
201 -#include <wireless/wl_main.h>
202 -#include <wireless/wl_priv.h>
203 -#include <wireless/wl_util.h>
204 -#include <wireless/wl_netdev.h>
205 +#include "wl_if.h"
206 +#include "wl_internal.h"
207 +#include "wl_enc.h"
208 +#include "wl_main.h"
209 +#include "wl_priv.h"
210 +#include "wl_util.h"
211 +#include "wl_netdev.h"
212  
213  
214  
215 --- wlags/wl_profile.c~includes
216 +++ wlags/wl_profile.c
217 @@ -95,23 +95,23 @@
218  /*******************************************************************************
219   * include files
220   ******************************************************************************/
221 -#include <wireless/wl_version.h>
222 +#include "wl_version.h"
223  
224  #include <linux/netdevice.h>
225  #include <linux/etherdevice.h>
226  #include <linux/unistd.h>
227  #include <asm/uaccess.h>
228  
229 -#include <hcf/debug.h>
230 -#include <hcf.h>
231 -#include <hcfdef.h>
232 +#include "debug.h"
233 +#include "hcf.h"
234 +#include "hcfdef.h"
235  
236 -#include <wireless/wl_if.h>
237 -#include <wireless/wl_internal.h>
238 -#include <wireless/wl_util.h>
239 -#include <wireless/wl_enc.h>
240 -#include <wireless/wl_main.h>
241 -#include <wireless/wl_profile.h>
242 +#include "wl_if.h"
243 +#include "wl_internal.h"
244 +#include "wl_util.h"
245 +#include "wl_enc.h"
246 +#include "wl_main.h"
247 +#include "wl_profile.h"
248  
249  
250  
251 --- wlags/wl_util.c~includes
252 +++ wlags/wl_util.c
253 @@ -78,7 +78,7 @@
254  /*******************************************************************************
255   *  include files
256   ******************************************************************************/
257 -#include <wireless/wl_version.h>
258 +#include "wl_version.h"
259  
260  #include <linux/kernel.h>
261  #include <linux/sched.h>
262 @@ -99,13 +99,13 @@
263  #include <linux/if_arp.h>
264  #include <linux/ioport.h>
265  
266 -#include <hcf/debug.h>
267 -#include <hcf.h>
268 -#include <hcfdef.h>
269 +#include "debug.h"
270 +#include "hcf.h"
271 +#include "hcfdef.h"
272  
273 -#include <wireless/wl_if.h>
274 -#include <wireless/wl_internal.h>
275 -#include <wireless/wl_util.h>
276 +#include "wl_if.h"
277 +#include "wl_internal.h"
278 +#include "wl_util.h"
279  
280  
281  
282 --- wlags/wl_wext.c~includes
283 +++ wlags/wl_wext.c
284 @@ -74,22 +74,22 @@
285  /*******************************************************************************
286   *  include files
287   ******************************************************************************/
288 -#include <wireless/wl_version.h>
289 +#include "wl_version.h"
290  
291  #include <linux/if_arp.h>
292  #include <linux/ioport.h>
293  #include <linux/delay.h>
294  #include <asm/uaccess.h>
295  
296 -#include <hcf/debug.h>
297 -#include <hcf.h>
298 -#include <hcfdef.h>
299 +#include "debug.h"
300 +#include "hcf.h"
301 +#include "hcfdef.h"
302  
303 -#include <wireless/wl_if.h>
304 -#include <wireless/wl_internal.h>
305 -#include <wireless/wl_util.h>
306 -#include <wireless/wl_main.h>
307 -#include <wireless/wl_wext.h>
308 +#include "wl_if.h"
309 +#include "wl_internal.h"
310 +#include "wl_util.h"
311 +#include "wl_main.h"
312 +#include "wl_wext.h"
313  
314  
315  
316 @@ -212,7 +212,7 @@
317              break;
318  
319  
320 -           case SIOCSIWSPY:        // Set the spy list
321 +       case SIOCSIWSPY:        // Set the spy list
322              
323              DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWNAME\n" );
324              ret = wireless_set_spy_addrs( wrq, lp );
325 @@ -220,7 +220,7 @@
326              break;
327  
328  
329 -           case SIOCGIWSPY:        // Get the spy list
330 +       case SIOCGIWSPY:        // Get the spy list
331              
332              DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWSPY\n" );
333              ret = wireless_get_spy_addrs( wrq, lp );
334 @@ -239,6 +239,7 @@
335  
336  
337  #if (HCF_TYPE) & HCF_TYPE_STA
338 +
339          case SIOCGIWAP:         // Get the MAC Address of current AP
340  
341              DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWAP\n" );
342 @@ -248,7 +249,6 @@
343  
344  #endif //HCF_STA
345  
346 -
347          case SIOCGIWAPLIST:
348  
349              /* NOTE: SIOCGIWAPLIST has been deprecated by SIOCSIWSCAN/SIOCGIWSCAN.
350 @@ -267,7 +267,7 @@
351              break;
352  
353  
354 -           case SIOCSIWSENS:       // Set the desired AP density
355 +       case SIOCSIWSENS:       // Set the desired AP density
356  
357              DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWSENS\n" );
358              ret = wireless_set_sensitivity( wrq, lp );
359 @@ -275,7 +275,7 @@
360              break;
361  
362  
363 -           case SIOCGIWSENS:       // Get the current AP density
364 +       case SIOCGIWSENS:       // Get the current AP density
365              
366              DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWSENS\n" );
367              wireless_get_sensitivity( wrq, lp );
368 @@ -287,7 +287,7 @@
369  
370  #if WIRELESS_EXT > 5
371  
372 -           case SIOCSIWESSID:      // Set the desired network name (ESSID)
373 +       case SIOCSIWESSID:      // Set the desired network name (ESSID)
374              
375              DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWESSID\n" );
376              ret = wireless_set_essid( wrq, lp );
377 @@ -295,7 +295,7 @@
378              break;
379  
380  
381 -           case SIOCGIWESSID:      // Get the current network name (ESSID)
382 +       case SIOCGIWESSID:      // Get the current network name (ESSID)
383              
384              DBG_TRACE(DbgInfo, "IOCTL: SIOCGIWESSID\n");  
385              ret = wireless_get_essid( wrq, lp );
386 @@ -307,7 +307,7 @@
387  
388  #if WIRELESS_EXT > 7
389  
390 -           case SIOCSIWNICKN:      // Set desired station nickname
391 +       case SIOCSIWNICKN:      // Set desired station nickname
392             
393              DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWNICKN\n" );
394              ret = wireless_set_nickname( wrq, lp );
395 @@ -315,7 +315,7 @@
396              break;
397         
398  
399 -           case SIOCGIWNICKN:      // Get current station nickname
400 +       case SIOCGIWNICKN:      // Get current station nickname
401              
402              DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWNICKN\n" );
403              ret = wireless_get_nickname( wrq, lp );
404 @@ -323,7 +323,7 @@
405              break;
406  
407  
408 -        case SIOCSIWRTS:        // Set the desired RTS threshold
409 +       case SIOCSIWRTS:        // Set the desired RTS threshold
410             
411              DBG_TRACE( DbgInfo, "IOCTL: SIOCSIWRTS\n" );
412              ret = wireless_set_rts_threshold( wrq, lp );
413 @@ -331,7 +331,7 @@
414              break;
415         
416  
417 -           case SIOCGIWRTS:        // Get the current RTS threshold
418 +       case SIOCGIWRTS:        // Get the current RTS threshold
419              
420              DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWRTS\n" );
421              wireless_get_rts_threshold( wrq, lp );
422 @@ -382,7 +382,7 @@
423              break;
424  
425  
426 -           case SIOCGIWENCODE:     // Get the encryption keys
427 +       case SIOCGIWENCODE:     // Get the encryption keys
428             
429              DBG_TRACE( DbgInfo, "IOCTL: SIOCGIWENCODE\n" );
430              ret = wireless_get_encode( wrq, lp );
431 @@ -503,7 +503,7 @@
432  
433  #endif  // WIRELESS_EXT > 11
434  
435 -           case SIOCGIWPRIV:       // Get private ioctl interface info
436 +       case SIOCGIWPRIV:       // Get private ioctl interface info
437  
438              DBG_TRACE(DbgInfo, "IOCTL: SIOCGIWPRIV NOT SUPPORTED!!!\n");
439              ret = -EOPNOTSUPP;
440 --- wlags/hcfcfg.h~includes
441 +++ wlags/hcfcfg.h
442 @@ -764,7 +764,7 @@
443  
444  #include <asm/io.h>
445  #include <linux/module.h>
446 -#include <wireless/wl_version.h>
447 +#include "wl_version.h"
448  
449  /* The following macro ensures that no symbols are exported, minimizing the chance of a symbol
450     collision in the kernel */