Age | Commit message (Expand) | Author |
2016-09-03 | Remove iwm_release() by inlining its implementation into its only caller. | Stefan Sperling |
2016-09-03 | iwm was undecided between 'if (err != 0)' and 'if (err)'; switch to 'if (err)' | Stefan Sperling |
2016-09-03 | In iwm, move assignments to 'err' outside of if-statements. | Stefan Sperling |
2016-09-03 | The iwm code was torn between 'error' and 'err'; error -> err everywhere | Stefan Sperling |
2016-09-03 | DPRINTFs infesting iwm die in a fire... too much noise | Stefan Sperling |
2016-09-03 | Get rid of iwm_set_pwr(). Call iwm_set_bits_mask_prph() directly instead. | Stefan Sperling |
2016-09-03 | fix some whitespace and overlong lines | Stefan Sperling |
2016-09-03 | Remove iwm_alloc_* wrapper functions around iwm_dma_contig_alloc(). | Stefan Sperling |
2016-09-03 | Get rid of the various iwm_free_* wrappers around iwm_dma_contig_free(). | Stefan Sperling |
2016-09-03 | Get rid of iwm_mvm_send_add_sta_cmd_status() which is a pointless wrapper | Stefan Sperling |
2016-09-03 | Use macros for iwm(4) bitmask definitions instead of enums. | Stefan Sperling |
2016-09-02 | Enable SGI for iwm(4). | Stefan Sperling |
2016-09-02 | The policy field in struct iwm_time_event_cmd_v2 is just a 16bit integer, | Stefan Sperling |
2016-09-02 | Fix off-by-one error in the IWM_NUM_UCODE_TLV_CAPA range check. | Stefan Sperling |
2016-09-02 | The iwm_poll_bit() function in iwm(4) returns 1 on success, and 0 on failure. | Stefan Sperling |
2016-09-01 | Always initialize error code returned from iwm_firmware_load_chunk(). | Stefan Sperling |
2016-08-17 | If the stack demands protection by setting the USEPROT flag then set the | Stefan Sperling |
2016-08-15 | Remove IWM_CMD_SYNC, which expands to zero while all the other | Stefan Sperling |
2016-08-07 | Make iwm(4) automagically recover from fatal firmware errors by leaving the | Stefan Sperling |
2016-07-20 | Disable the beacon filter in iwm(4). This allows beacons to pass through to | Stefan Sperling |
2016-07-18 | Explicitly set iwm(4) firmware Tx aggregation limit to one (which disables | Stefan Sperling |
2016-07-18 | Fix inverted logic in iwm_tx(). The PROT_REQUIRE flag in should be set for | Stefan Sperling |
2016-07-18 | Make iwm(4) retry Tx of management frames less often. We now retry management | Stefan Sperling |
2016-06-22 | In iwm(4), clear the in_assoc flag when going down. This flag affects behaviour | Stefan Sperling |
2016-06-22 | Remove code from iwm(4) which sends DTIM and TSF information to the | Stefan Sperling |
2016-06-22 | Make iwm(4) explicitly send multicast frames at the lowest rate, instead of | Stefan Sperling |
2016-06-20 | In iwm(4), send PHY DB commands as async commands. | Stefan Sperling |
2016-06-19 | Make some noise in dmesg when iwm(4) fails to bring up the hardware. | Stefan Sperling |
2016-06-18 | Plug some memory leaks in error paths of iwm(4). | Stefan Sperling |
2016-06-03 | In iwm(4), fix multicast Rx by updating the MAC context again after | Stefan Sperling |
2016-05-28 | Add support for Intel Wireless 3165 devices to iwm(4). | Stefan Sperling |
2016-05-28 | In iwm(4), don't parse nvram antenna data for 7k devices, they don't have it. | Stefan Sperling |
2016-05-28 | Add support for Intel Wireless 8260 devices to iwm(4). | Stefan Sperling |
2016-05-25 | Update iwm(4) to firmware API 16 and enable RTS/CTS frame protection. | Stefan Sperling |
2016-05-18 | Fix several nitpicks in iwm(4). | Stefan Sperling |
2016-05-18 | In iwm(4), add bit-polling in Rx-DMA init code path. | Stefan Sperling |
2016-04-13 | G/C IFQ_SET_READY(). | Martin Pieuchot |
2016-02-13 | Make iwm(4) initialize net80211 callback pointers at attach time. | Stefan Sperling |
2016-02-05 | In iwm(4), set max A-MPDU length to 64k instead of 4k and tell the firmware | Stefan Sperling |
2016-01-25 | Keep track of HT protection settings in beacons and have 11n-capable | Stefan Sperling |
2016-01-07 | Fix A-MPDU parameters in link quality firmware commands in iwn(4) and iwm(4). | Stefan Sperling |
2016-01-06 | Initialize the A-MPDU parameters field in HT capability elements. | Stefan Sperling |
2016-01-06 | iwm(4) adjusts the firmware's tx rate retry table dynamically so we must | Stefan Sperling |
2016-01-05 | Remove the IEEE80211_NO_HT macro. Reduces ifdef spaghetti, enables 11n mode | Stefan Sperling |
2015-12-14 | Add initial 802.11n support to the iwm(4) driver. | Stefan Sperling |
2015-12-11 | Replace mountroothook_establish(9) by config_mountroot(9) a narrower API | Martin Pieuchot |
2015-12-08 | When iwm(4) moves to AUTH state it asks the firmware for a "time event" to | Stefan Sperling |
2015-11-25 | replace IFF_OACTIVE manipulation with mpsafe operations. | David Gwynne |
2015-11-24 | You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl. | Martin Pieuchot |
2015-11-24 | You need <netinet/ip.h> if you use "struct ip" for hw checksum. | Martin Pieuchot |