All of lore.kernel.org
 help / color / mirror / Atom feed
* pull-request: iwlwifi-next 2018-12-14
@ 2018-12-14 13:59 Luca Coelho
  2018-12-14 15:06 ` Kalle Valo
  0 siblings, 1 reply; 2+ messages in thread
From: Luca Coelho @ 2018-12-14 13:59 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, linuxwifi, david.e.box, joe.konno

[-- Attachment #1: Type: text/plain, Size: 4778 bytes --]

Hi Kalle,

This is the third batch of patches intended for v4.21.  This includes
only the last patchset I sent.  Usual development work, continuing with
the new debugging infrastructure, some 802.11ax fixes in radiotap and
other small fixes and cleanups.  More details about the contents in the
tag description.

I have sent this out before and kbuildbot reported success.

Please let me know if there are any issues.

Cheers,
Luca.


The following changes since commit e3e454b7047a8bb11c0311ab1708e040481a6044:

  rtlwifi: rtl8821ae: remove set but not used variable 'type' in translate_rx_signal_stuff (2018-12-13 17:04:09 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-next.git tags/iwlwifi-next-for-kalle-2018-12-14

for you to fetch changes up to 55ed14cdaec503bfe6a94f0524d0d2c9b7226aed:

  iwlwifi: mvm: don't check if a pointer is set if it can't be unset (2018-12-14 13:04:49 +0200)

----------------------------------------------------------------
Third batch of iwlwifi patches intended for v4.21

* Some cleanups in the HW configuration structures;
* More work on the debugging infrastructure;
* Fixes related to 802.11ax;
* Other cleanups and small fixes;

----------------------------------------------------------------
Avraham Stern (1):
      iwlwifi: mvm: force TCM re-evaluation on TCM resume

Emmanuel Grumbach (1):
      iwlwifi: mvm: don't check if a pointer is set if it can't be unset

Luca Coelho (5):
      iwlwifi: move common 9000 cfg parameters to common macro
      iwlwifi: don't define OTP_LOW_IMAGE_SIZE per family, but per size
      iwlwifi: remove useless NVM_HW_SECTION_NUM_FAMILY_* macros
      iwlwifi: move iwl_nvm_check_version() into dvm
      iwlwifi: remove all unnecessary occurrences of nvm_calib_ver

Sara Sharon (5):
      iwlwifi: dbg: dump data according to the new ini TLVs
      iwlwifi: add support for triggering ini triggers
      iwlwifi: mvm: activate apply points
      iwlwifi: pcie: fix erroneous print
      iwlwifi: pcie: set cmd_len in the correct place

Shaul Triebitz (3):
      iwlwifi: mvm: change PHY data RX for HE radiotap
      iwlwifi: mvm: add L-SIG length to radiotap
      iwlwifi: mvm: radiotap: remove UL_DL bit in HE TRIG_BASED

 drivers/net/wireless/intel/iwlwifi/cfg/1000.c            |   2 +-
 drivers/net/wireless/intel/iwlwifi/cfg/2000.c            |   4 +-
 drivers/net/wireless/intel/iwlwifi/cfg/22000.c           |  10 +--
 drivers/net/wireless/intel/iwlwifi/cfg/6000.c            |   6 +-
 drivers/net/wireless/intel/iwlwifi/cfg/7000.c            |  27 +------
 drivers/net/wireless/intel/iwlwifi/cfg/8000.c            |  11 +--
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c            |  85 ++------------------
 drivers/net/wireless/intel/iwlwifi/dvm/main.c            |  17 ++++
 drivers/net/wireless/intel/iwlwifi/fw/api/rx.h           | 190 ++++++++++++++++++++++++++++-----------------
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c              | 322 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h              |  41 +++++++++-
 drivers/net/wireless/intel/iwlwifi/fw/error-dump.h       |  17 ++++
 drivers/net/wireless/intel/iwlwifi/fw/runtime.h          |   2 +-
 drivers/net/wireless/intel/iwlwifi/iwl-config.h          |   8 +-
 drivers/net/wireless/intel/iwlwifi/iwl-eeprom-parse.c    |  19 -----
 drivers/net/wireless/intel/iwlwifi/iwl-eeprom-parse.h    |   5 +-
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h            |   6 ++
 drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c         |   2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c              |  20 +++--
 drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c        |   2 +
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c        |   2 +
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c              |  37 ++++-----
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c            | 394 ++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c            |   2 +
 drivers/net/wireless/intel/iwlwifi/mvm/utils.c           |  14 ++++
 drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c |  13 ++--
 drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info.c      |   2 +-
 drivers/net/wireless/intel/iwlwifi/pcie/internal.h       |   5 ++
 drivers/net/wireless/intel/iwlwifi/pcie/trans.c          |  71 +++++++++++------
 drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c        |  24 +++---
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c             |  10 +--
 31 files changed, 872 insertions(+), 498 deletions(-)

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: pull-request: iwlwifi-next 2018-12-14
  2018-12-14 13:59 pull-request: iwlwifi-next 2018-12-14 Luca Coelho
@ 2018-12-14 15:06 ` Kalle Valo
  0 siblings, 0 replies; 2+ messages in thread
From: Kalle Valo @ 2018-12-14 15:06 UTC (permalink / raw)
  To: Luca Coelho; +Cc: linux-wireless, linuxwifi, david.e.box, joe.konno

Luca Coelho <luca@coelho.fi> writes:

> This is the third batch of patches intended for v4.21.  This includes
> only the last patchset I sent.  Usual development work, continuing with
> the new debugging infrastructure, some 802.11ax fixes in radiotap and
> other small fixes and cleanups.  More details about the contents in the
> tag description.
>
> I have sent this out before and kbuildbot reported success.
>
> Please let me know if there are any issues.
>
> Cheers,
> Luca.
>
>
> The following changes since commit e3e454b7047a8bb11c0311ab1708e040481a6044:
>
>   rtlwifi: rtl8821ae: remove set but not used variable 'type' in translate_rx_signal_stuff (2018-12-13 17:04:09 +0200)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-next.git tags/iwlwifi-next-for-kalle-2018-12-14
>
> for you to fetch changes up to 55ed14cdaec503bfe6a94f0524d0d2c9b7226aed:
>
>   iwlwifi: mvm: don't check if a pointer is set if it can't be unset (2018-12-14 13:04:49 +0200)
>
> ----------------------------------------------------------------
> Third batch of iwlwifi patches intended for v4.21
>
> * Some cleanups in the HW configuration structures;
> * More work on the debugging infrastructure;
> * Fixes related to 802.11ax;
> * Other cleanups and small fixes;
>
> ----------------------------------------------------------------

Pulled, thanks.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-12-14 15:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-14 13:59 pull-request: iwlwifi-next 2018-12-14 Luca Coelho
2018-12-14 15:06 ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.