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