HP-PA support. In theory.
This commit is contained in:
parent
07ed45e611
commit
9d7ae346d8
2
CHANGES
2
CHANGES
|
@ -42,6 +42,8 @@
|
|||
*
|
||||
* --------------------------------------------------------------------
|
||||
-pre4
|
||||
- HP-PA support. In theory. Anyone care to test?
|
||||
- pcmcia script cleanups
|
||||
- Add ident info for the "Intel PRO/Wireless 2011B LAN USB Device"
|
||||
- Include an almost-sane fix to the modversion madness
|
||||
- tweak the init order of the PCI driver structs.
|
||||
|
|
2
THANKS
2
THANKS
|
@ -89,6 +89,8 @@ David Everly <deckrider@yahoo.com>
|
|||
Nick Jafa <jafa@silicondust.com>
|
||||
James Goodwin <jamesg@Filanet.com>
|
||||
Derek Atkins <warlord@mit.edu>
|
||||
Michael Beattie <mjb@debian.org>
|
||||
Joey Hess <joey@kitenet.net>
|
||||
|
||||
[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
|
||||
|
|
|
@ -59,6 +59,7 @@
|
|||
#define WLAN_ARM 4
|
||||
#define WLAN_ALPHA 5
|
||||
#define WLAN_MIPS 6
|
||||
#define WLAN_HPPA 7
|
||||
/* WLAN_CPU_CORE */
|
||||
#define WLAN_I386CORE 1
|
||||
#define WLAN_PPCCORE 2
|
||||
|
@ -66,6 +67,7 @@
|
|||
#define WLAN_ARMCORE 4
|
||||
#define WLAN_ALPHACORE 5
|
||||
#define WLAN_MIPSCORE 6
|
||||
#define WLAN_HPPACORE 7
|
||||
/* WLAN_CPU_PART */
|
||||
#define WLAN_I386PART 1
|
||||
#define WLAN_MPC860 2
|
||||
|
@ -75,6 +77,7 @@
|
|||
#define WLAN_ARMPART 6
|
||||
#define WLAN_ALPHAPART 7
|
||||
#define WLAN_MIPSPART 8
|
||||
#define WLAN_HPPAPART 9
|
||||
/* WLAN_SYSARCH */
|
||||
#define WLAN_PCAT 1
|
||||
#define WLAN_MBX 2
|
||||
|
@ -85,6 +88,7 @@
|
|||
#define WLAN_BITSY 7
|
||||
#define WLAN_ALPHAARCH 7
|
||||
#define WLAN_MIPSARCH 9
|
||||
#define WLAN_HPPAARCH 10
|
||||
/* WLAN_OS */
|
||||
#define WLAN_LINUX_KERNEL 1
|
||||
#define WLAN_LINUX_USER 2
|
||||
|
@ -148,6 +152,11 @@
|
|||
#define WLAN_CPU_CORE WLAN_MIPSCORE
|
||||
#define WLAN_CPU_PART WLAN_MIPSPART
|
||||
#define WLAN_SYSARCH WLAN_MIPSARCH
|
||||
#elif defined(__hppa__)
|
||||
#define WLAN_CPU_FAMILY WLAN_HPPA
|
||||
#define WLAN_CPU_CORE WLAN_HPPACORE
|
||||
#define WLAN_CPU_PART WLAN_HPPAPART
|
||||
#define WLAN_SYSARCH WLAN_HPPAARCH
|
||||
#else
|
||||
#error "No CPU identified!"
|
||||
#endif
|
||||
|
@ -181,6 +190,11 @@
|
|||
#define WLAN_CPU_CORE WLAN_MIPSCORE
|
||||
#define WLAN_CPU_PART WLAN_MIPSPART
|
||||
#define WLAN_SYSARCH WLAN_MIPSARCH
|
||||
#elif defined(__hppa__)
|
||||
#define WLAN_CPU_FAMILY WLAN_HPPA
|
||||
#define WLAN_CPU_CORE WLAN_HPPACORE
|
||||
#define WLAN_CPU_PART WLAN_HPPAPART
|
||||
#define WLAN_SYSARCH WLAN_HPPAARCH
|
||||
#else
|
||||
#error "No CPU identified!"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue