diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-09-12 10:20:43 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-12 10:20:43 +0000 |
commit | 8ede563e65a8b5dfbfbd1daaf4dff8aed3e3a8e9 (patch) | |
tree | 7f1459c745d086e37d29153d1fe1d26912599f8f /packages/wlan-ng/wlan-ng-modules-0.2.2/module_param_array.patch | |
parent | 9e184abb76de11a7f3441cf9e981150cf972553d (diff) |
wlan-ng: resolve several issues in our wlan-ng 0.2.2 build
patch courtesy Frederic Devernay, thanks!
Diffstat (limited to 'packages/wlan-ng/wlan-ng-modules-0.2.2/module_param_array.patch')
-rw-r--r-- | packages/wlan-ng/wlan-ng-modules-0.2.2/module_param_array.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/wlan-ng/wlan-ng-modules-0.2.2/module_param_array.patch b/packages/wlan-ng/wlan-ng-modules-0.2.2/module_param_array.patch new file mode 100644 index 0000000000..a22d39dca2 --- /dev/null +++ b/packages/wlan-ng/wlan-ng-modules-0.2.2/module_param_array.patch @@ -0,0 +1,19 @@ +--- linux-wlan-ng-0.2.2/src/prism2/driver/prism2_cs.c~ 2005-07-20 19:16:55.000000000 +0200 ++++ linux-wlan-ng-0.2.2/src/prism2/driver/prism2_cs.c 2005-09-01 19:02:59.099563318 +0200 +@@ -22,12 +22,16 @@ + * says. + */ + #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11) ) ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) + #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,5)) + static int numlist = 4; + module_param_array(irq_list, int, numlist, 0444); + #else + module_param_array(irq_list, int, NULL, 0444); + #endif ++#else ++MODULE_PARM( irq_list, "1-4i" ); ++#endif + module_param( irq_mask, int, 0644); + #endif + |