From mboxrd@z Thu Jan 1 00:00:00 1970 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 AF9A5C433EF for ; Fri, 24 Jun 2022 16:53:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230366AbiFXQxl (ORCPT ); Fri, 24 Jun 2022 12:53:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48970 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229912AbiFXQxk (ORCPT ); Fri, 24 Jun 2022 12:53:40 -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 D182E4739D for ; Fri, 24 Jun 2022 09:53:39 -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 735BC6231F for ; Fri, 24 Jun 2022 16:53:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79927C3411C; Fri, 24 Jun 2022 16:53:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656089618; bh=oOY756ivqAWkyi0wZqS905zKFdWvBVlqssZgNz5e0mY=; h=From:To:Cc:Subject:Date:From; b=TpSZ9hJ7QVa4bdxBmwtw5WqBn81AiCZscDsQBYgk14IaXGr2BIzdcmhUmexcNa6Ku RztNIcaNl9ijSbLHVsVGrMNsAUk45Ak4zs1/S7oe1pOVKScxN6IgRTlTHjtFr8Izhd WC7BwVKwAKaNuTAAx1fiLSUx8ar4zc/4hfPlA3HC4UWRnDzwcai+492UuHsYKnAblD F8TzTSRmbgbKJQMpNPspG3S8WaNnuZ5L7Gb7gWtVBn/vLfk06WNODOQUIWOn5oosGc 1rWMg+1//yEYJHS/qMHLKEHsMa4P7ps97W6WWnlPRT2SMZ0ZswzqFsw51XdIy2OJLO J12HPNlkHDybA== From: Mark Brown To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Mark Brown Subject: [GIT PULL] regmap fixes for v5.19-rc3 Date: Fri, 24 Jun 2022 17:53:28 +0100 Message-Id: <20220624165338.79927C3411C@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit f2906aa863381afb0015a9eb7fefad885d4e5a56: Linux 5.19-rc1 (2022-06-05 17:18:54 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git tags/regmap-fix-v5.19-rc3 for you to fetch changes up to 3f05010f243be06478a9b11cfce0ce994f5a0890: regmap-irq: Fix offset/index mismatch in read_sub_irq_data() (2022-06-22 11:59:52 +0100) ---------------------------------------------------------------- regmap: Fixes for v5.19 Two sets of fixes - one for things that were missed with the support for custom bulk I/O operations introduced in the last merge window, and another for some long standing issues with regmap-irq which affect a fairly small subset of devices. ---------------------------------------------------------------- Aidan MacDonald (2): regmap-irq: Fix a bug in regmap_irq_enable() for type_in_mask chips regmap-irq: Fix offset/index mismatch in read_sub_irq_data() Javier Martinez Canillas (3): regmap: Re-introduce bulk read support check in regmap_bulk_read() regmap: Make regmap_noinc_read() return -ENOTSUPP if map->read isn't set regmap: Wire up regmap_config provided bulk write in missed functions drivers/base/regmap/regmap-irq.c | 8 +++++--- drivers/base/regmap/regmap.c | 15 ++++++++------- 2 files changed, 13 insertions(+), 10 deletions(-)