From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EFC34138350 for ; Wed, 5 Feb 2020 14:44:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19D1FE0BE1; Wed, 5 Feb 2020 14:44:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF0D7E0BE1 for ; Wed, 5 Feb 2020 14:44:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB98434E288 for ; Wed, 5 Feb 2020 14:44:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 296F9116 for ; Wed, 5 Feb 2020 14:44:08 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1580913804.a91bb69e72b481ae5c68a3faf3e109aa68613ad8.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:5.5 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 2400_iwlwifi-PHY_SKU-NVM-3168-fix.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: a91bb69e72b481ae5c68a3faf3e109aa68613ad8 X-VCS-Branch: 5.5 Date: Wed, 5 Feb 2020 14:44:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 46fc7c8b-313a-42ed-acb6-cdce7c718cc3 X-Archives-Hash: 17685c2ea16cef4b34fec29282a3becf commit: a91bb69e72b481ae5c68a3faf3e109aa68613ad8 Author: Mike Pagano gentoo org> AuthorDate: Wed Feb 5 14:43:24 2020 +0000 Commit: Mike Pagano gentoo org> CommitDate: Wed Feb 5 14:43:24 2020 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=a91bb69e iwlwifi: mvm: Do not require PHY_SKU NVM section for 3168 devices See bug#706810 Signed-off-by: Mike Pagano gentoo.org> 0000_README | 4 ++++ 2400_iwlwifi-PHY_SKU-NVM-3168-fix.patch | 14 ++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/0000_README b/0000_README index 65e9013..ead5c5e 100644 --- a/0000_README +++ b/0000_README @@ -63,6 +63,10 @@ Patch: 2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch From: https://lore.kernel.org/linux-bluetooth/20190522070540.48895-1-marcel@holtmann.org/raw Desc: Bluetooth: Check key sizes only when Secure Simple Pairing is enabled. See bug #686758 +Patch: 2400_iwlwifi-PHY_SKU-NVM-3168-fix.patch +From: https://patchwork.kernel.org/patch/11353871/ +Desc: iwlwifi: mvm: Do not require PHY_SKU NVM section for 3168 devices + Patch: 2600_enable-key-swapping-for-apple-mac.patch From: https://github.com/free5lot/hid-apple-patched Desc: This hid-apple patch enables swapping of the FN and left Control keys and some additional on some apple keyboards. See bug #622902 diff --git a/2400_iwlwifi-PHY_SKU-NVM-3168-fix.patch b/2400_iwlwifi-PHY_SKU-NVM-3168-fix.patch new file mode 100644 index 0000000..d736a9e --- /dev/null +++ b/2400_iwlwifi-PHY_SKU-NVM-3168-fix.patch @@ -0,0 +1,14 @@ +diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/nvm.c b/drivers/net/wireless/intel/iwlwifi/mvm/nvm.c +index 46128a2a9c6e..e98ce380c7b9 100644 +--- a/drivers/net/wireless/intel/iwlwifi/mvm/nvm.c ++++ b/drivers/net/wireless/intel/iwlwifi/mvm/nvm.c +@@ -308,7 +308,8 @@ iwl_parse_nvm_sections(struct iwl_mvm *mvm) + } + + /* PHY_SKU section is mandatory in B0 */ +- if (!mvm->nvm_sections[NVM_SECTION_TYPE_PHY_SKU].data) { ++ if (mvm->trans->cfg->nvm_type == IWL_NVM_EXT && ++ !mvm->nvm_sections[NVM_SECTION_TYPE_PHY_SKU].data) { + IWL_ERR(mvm, + "Can't parse phy_sku in B0, empty sections\n"); + return NULL;