Bug 1013 - Driver does not properly set capabilities
: Driver does not properly set capabilities
Status: VERIFIED FIXED
: IPW3945
WPA and WPA2
: 0.0.74
: All All
: P2 normal
Assigned To:
:
:
:
:
:
  Show dependency treegraph
 
Reported: 2006-04-12 17:18 by
Modified: 2006-04-27 23:15 (History)


Attachments
Patch (429 bytes, patch)
2006-04-12 17:18, bugzilla@eric.barkie.net
Details | Diff


Note

You need to log in before you can comment on or make changes to this bug.


Description From 2006-04-12 17:18:17
This fixes NetworkManager for me, taken from the ipw2200 driver...

--- ipw3945.c.orig      2006-04-12 20:09:32.000000000 -0400
+++ ipw3945.c   2006-04-12 19:56:36.000000000 -0400
@@ -11639,6 +11639,11 @@
        range->event_capa[1] = IW_EVENT_CAPA_K_1;
 #endif                         /* WIRELESS_EXT > 16 */

+#if WIRELESS_EXT >= 18
+       range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
+               IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
+#endif
+
        mutex_unlock(&priv->mutex);
        IPW_DEBUG_WX("GET Range\n");
        return 0;
------- Comment #1 From 2006-04-12 17:18:57 -------
Created an attachment (id=766) [details]
Patch

Properly formatted patch
------- Comment #2 From 2006-04-13 11:03:22 -------
Change the status for James to pick up.

Thanks for your patch.
------- Comment #3 From 2006-04-17 14:12:42 -------
Merged for 1.0.1.  Setting to Fixed.
------- Comment #4 From 2006-04-26 20:03:30 -------
I have checked with 1.0.2 , the patch has been merged for 1.0.2 .
Eric ,can you verify this bug?
------- Comment #5 From 2006-04-27 06:44:38 -------
Yes, I've verified that the capabilities in 1.0.2 work perfectly in
NetworkManager.  Thanks for committing this so quickly.