1. 10 Feb, 2021 35 commits
  2. 09 Feb, 2021 1 commit
  3. 08 Feb, 2021 4 commits
    • Kalle Valo's avatar
      Merge tag 'mt76-for-kvalo-2021-01-29' of https://github.com/nbd168/wireless · 12996160
      Kalle Valo authored
      mt76 patches for 5.12
      
      * add new mt7921e driver
      * factor out common code shared between 7615/7663 and 7921
      * performance optimizations
      * 7915 dbdc fixes
      * 802.11 encap offload support
      * support for multiple pcie gen1 host interfaces on 7915
      * 7915 testmode support
      * bugfixes
      * testmode support enhancements
      * endian fixes
      * 7915 txbf support
      12996160
    • Kalle Valo's avatar
      Merge tag 'iwlwifi-next-for-kalle-2021-02-05' of... · b7e6725d
      Kalle Valo authored
      Merge tag 'iwlwifi-next-for-kalle-2021-02-05' of git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-next
      
      iwlwifi patches intended for v5.12
      
      * Check FW notification sizes for robustness;
      * Improvements in the NAPI implementation;
      * Implement a workaround for CCA-EXT;
      * Add new FW API support;
      * Fix a CSA bug;
      * Implement PHY integration version parsing;
      * A bit of refactoring;
      * One more CSA bug fix, this time in the AP side;
      * Support for new So devices and a bit of reorg;
      * Per Platform Antenna Gain (PPAG) fixes and improvements;
      * Improvements in the debug framework;
      * Some other clean-ups and small fixes.
      
      # gpg: Signature made Fri 05 Feb 2021 12:04:21 PM EET using RSA key ID 1A3CC5FA
      # gpg: Good signature from "Luciano Roth Coelho (Luca) <luca@coelho.fi>"
      # gpg:                 aka "Luciano Roth Coelho (Intel) <luciano.coelho@intel.com>"
      b7e6725d
    • Jiapeng Chong's avatar
      ssb: Use true and false for bool variable · 4331667f
      Jiapeng Chong authored
      Fix the following coccicheck warnings:
      
      ./include/linux/ssb/ssb_driver_gige.h:89:8-9: WARNING: return of 0/1 in
      function 'ssb_gige_one_dma_at_once' with return type bool.
      
      ./include/linux/ssb/ssb_driver_gige.h:79:8-9: WARNING: return of 0/1 in
      function 'ssb_gige_have_roboswitch' with return type bool.
      
      ./include/linux/ssb/ssb_driver_gige.h:182:8-9: WARNING: return of 0/1 in
      function 'ssb_gige_must_flush_posted_writes' with return type bool.
      
      ./include/linux/ssb/ssb_driver_gige.h:178:8-9: WARNING: return of 0/1 in
      function 'ssb_gige_one_dma_at_once' with return type bool.
      
      ./include/linux/ssb/ssb_driver_gige.h:174:8-9: WARNING: return of 0/1 in
      function 'ssb_gige_have_roboswitch' with return type bool.
      
      ./include/linux/ssb/ssb_driver_gige.h:170:8-9: WARNING: return of 0/1 in
      function 'ssb_gige_is_rgmii' with return type bool.
      
      ./include/linux/ssb/ssb_driver_gige.h:162:8-9: WARNING: return of 0/1 in
      function 'pdev_is_ssb_gige_core' with return type bool.
      Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
      Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
      Acked-by: default avatarMichael Büsch <m@bues.ch>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/1612508199-92282-1-git-send-email-jiapeng.chong@linux.alibaba.com
      4331667f
    • Arnd Bergmann's avatar
      mwl8k: fix alignment constraints · bfdc4d7c
      Arnd Bergmann authored
      sturct mwl8k_dma_data contains a ieee80211_hdr structure, which is required to
      have at least two byte alignment, and this conflicts with the __packed
      attribute:
      
      vers/net/wireless/marvell/mwl8k.c:811:1: warning: alignment 1 of 'struct mwl8k_dma_data' is less than 2 [-Wpacked-not-aligned]
      
      Mark mwl8k_dma_data itself as having two-byte alignment to ensure the
      inner structure is properly aligned.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20210204162813.3159319-1-arnd@kernel.org
      bfdc4d7c