Fix an endian-ness buglet in the portstatus code.

This commit is contained in:
solomon 2004-02-23 14:57:05 +00:00
parent cae3be69e0
commit f8c174ec2f
3 changed files with 2 additions and 2 deletions

View File

@ -41,6 +41,7 @@
* Intersil Corporation as part of PRISM(R) chipset product development.
*
* --------------------------------------------------------------------
- Fix an endian-ness buglet in prism2sta.c (Federico Pellegrin)
- Compile fixes for 2.2.x kernels. (no tasklets or spin_lock_bh)
- Fix up pci resources on card init failure on plx card.
-pre20

2
THANKS
View File

@ -116,7 +116,7 @@ Dan Noe <dpn@isomerica.net>
Natsakis Konstantinos <cyfex@wthess.net>
Greg Weeks <greg.weeks@timesys.com>
Francesco Bochicchio <bockman@virgilio.it>
Federico Pellegrin <fede.evol@virgilio.it>
[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
are missing.]

View File

@ -1779,7 +1779,6 @@ void prism2sta_processing_defer(void *data)
HFA384x_RID_PORTSTATUS, result);
goto failed;
}
portstatus = hfa384x2host_16(portstatus);
wlandev->macmode =
(portstatus == HFA384x_PSTATUS_CONN_IBSS) ?
WLAN_MACMODE_IBSS_STA : WLAN_MACMODE_ESS_STA;