Several build fixes for 2.6.8 and 2.4.27, sent from the Debian

packagers.
This commit is contained in:
solomon 2005-09-06 15:04:08 +00:00
parent 543f0db4e8
commit 9118a3337c
5 changed files with 9 additions and 3 deletions

View File

@ -41,6 +41,7 @@
* Intersil Corporation as part of PRISM(R) chipset product development.
*
* --------------------------------------------------------------------
- Compile fixes for 2.6.8 (Victor Seva Lopez)
0.2.2
- Fix an array overflow in the hotplug helper function.
0.2.1-final

1
THANKS
View File

@ -134,6 +134,7 @@ Tim Huck <duceusmeus@yahoo.com>
Ekin Meroglu <ekin@fisek.com.tr>
Eric Koenders <Eric.Koenders@peekglobal.com>
Andreas Schultes <flirt@hold-clan.de>
Victor Seva Lopez <linuxmaniac@torreviejawireless.org>
[Many, many more. If I've overlooked you and you want to be listed here,
send me e-mail and I'll fix it. I _know_ a bunch of linux-wlan contributors

View File

@ -228,7 +228,11 @@ typedef int64_t INT64;
#endif
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0))
# include <linux/hardirq.h>
# if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,8))
# include <linux/hardirq.h>
# else
# include <asm/hardirq.h>
# endif
#elif defined(__KERNEL__)
# define PREEMPT_MASK (0x000000FFUL)
# define preempt_count() (0UL)

View File

@ -76,7 +76,7 @@ default:
ifeq ($(KERN_25), y)
$(MAKE) -C $(LINUX_SRC) M='$(PWD)/.. $(PWD)' WLAN_SRC=$(WLAN_SRC) modules
else
$(MAKE) -C $(LINUX_SRC) SUBDIRS=$(PWD) WLAN_SRC=$(WLAN_SRC) dep modules
$(MAKE) -C $(LINUX_SRC) SUBDIRS=$(PWD) WLAN_SRC=$(WLAN_SRC) modules
endif # KERN_25
clean:

View File

@ -22,7 +22,7 @@ static u_int prism2_ignorevcc=0; /* Boolean, if set, we
* says.
*/
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11) )
#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,5))
#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,8))
static int numlist = 4;
module_param_array(irq_list, int, numlist, 0444);
#else