From patchwork Thu Sep 8 12:21:23 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Brown X-Patchwork-Id: 604537 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B04FFC38145 for ; Thu, 8 Sep 2022 12:21:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231578AbiIHMVl (ORCPT ); Thu, 8 Sep 2022 08:21:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43120 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231635AbiIHMVg (ORCPT ); Thu, 8 Sep 2022 08:21:36 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 879051316DA; Thu, 8 Sep 2022 05:21:33 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 1C67461CD4; Thu, 8 Sep 2022 12:21:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2A0BDC433D6; Thu, 8 Sep 2022 12:21:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1662639692; bh=holoJC7k/mCyBOzapjBumEYJ6+C0KD4dODVUkOFKXcc=; h=From:To:Cc:Subject:Date:From; b=Vza+rTw1sbAO7TAn9OxaiIfhWPzd+vmCVjZl2wHpNDlgX8PIxu0MyM46j+yRD++hd q1Na9S8ow3494CKwI2YtEZ7ExNh6Q7DNPpju6NVOaCfBWjiv4B1R5FDlrurmLzG8gX OI096/7hOGGmJVAQ+ivjCDDQiyIPR2hoD+EN8ogi7PGf1l9pkZMg2qT2SU9lvUAcZc 8B6Po/Nt8Xa65QM9zj4p3RG47ui4laEFRjL3sufVKmSKMJrBS05nHc7vcKJVvP1HBZ 06GHprADe7RRGtJjn12iVHIfImyNyShPfFdzAwfMf41NVKbFpKc18JCqAdmYvXKIzV mQdfk22cyFGYA== From: Mark Brown To: Linus Torvalds Cc: linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org, Mark Brown Subject: [GIT PULL] SPI fixes for v6.0-rc4 Date: Thu, 08 Sep 2022 13:21:23 +0100 Message-Id: <20220908122132.2A0BDC433D6@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org The following changes since commit 568035b01cfb107af8d2e4bd2fb9aea22cf5b868: Linux 6.0-rc1 (2022-08-14 15:50:18 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git tags/spi-fix-v6.0-rc4 for you to fetch changes up to 9c9c9da7aa108e6bf952c18289527a5234e4fc59: spi: spi: Fix queue hang if previous transfer failed (2022-09-02 13:27:48 +0100) ---------------------------------------------------------------- spi: Fixes for v6.0 Several fixes that came in since the merge window, the major one being a fix for the spi-mux driver which was broken by the performance optimisations due to it peering inside the core's data structures more than it should. ---------------------------------------------------------------- David Jander (1): spi: spi: Fix queue hang if previous transfer failed Mark Brown (1): spi: mux: Fix mux interaction with fast path optimisations Niravkumar L Rabara (1): spi: cadence-quadspi: Disable irqs during indirect reads Robin Murphy (1): spi: bitbang: Fix lsb-first Rx drivers/spi/spi-bitbang-txrx.h | 6 ++++-- drivers/spi/spi-cadence-quadspi.c | 38 ++++++++++++++++++++++++++++++++++---- drivers/spi/spi-mux.c | 1 + drivers/spi/spi.c | 5 ++--- include/linux/spi/spi.h | 2 ++ 5 files changed, 43 insertions(+), 9 deletions(-)