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 X-Spam-Level: X-Spam-Status: No, score=-12.6 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_PASS,T_DKIMWL_WL_HIGH,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 44182C04A6B for ; Mon, 6 May 2019 14:17:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0F0FD2054F for ; Mon, 6 May 2019 14:17:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1557152254; bh=shJp6MJTcFUY3j7WPW82E/N0SCOv0luKbLhYpwPP7RA=; h=Date:From:To:Cc:Subject:List-ID:From; b=G0rbeo2ka7Pxhqh0iqOfR1BTBNAVU2qdfLuMPlc/lsAjd2nPvMqmVv+/kEHP9wHg7 HNeuNWkFlVpVWTpBRwvbxCKqRzw2I1wxIL4OB1lCdTBrMrIM1AU9YH2i7K8ljXP/Cw SQoooayf9A/zOT11QQGJYwlmNlzQTIx4C3cnNxWA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726282AbfEFORd (ORCPT ); Mon, 6 May 2019 10:17:33 -0400 Received: from heliosphere.sirena.org.uk ([172.104.155.198]:60560 "EHLO heliosphere.sirena.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726046AbfEFORc (ORCPT ); Mon, 6 May 2019 10:17:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sirena.org.uk; s=20170815-heliosphere; h=Content-Type:MIME-Version: Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=okr7F/afGL+GHrlf9E7+rCz+2b34y7Hll8aDPJEnwHw=; b=TIvvIxxuteVrvtZD7RpM9qQdO wEKyCOsX55oXqAhLbG1aVEiHbRXh0BEheLf0R7OJX/Ow8wWrBttjdsC3ylhRBkbYh8xHwNXSqbynK i2fbXyA58QkfRNBpcHLr0YKkt3MFAEqpwuj/1xYQke/t7J8fvKuEpnGLbdVyGf+gUR1eg=; Received: from kd111239184067.au-net.ne.jp ([111.239.184.67] helo=finisterre.ee.mobilebroadband) by heliosphere.sirena.org.uk with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hNeQs-0001nP-Bx; Mon, 06 May 2019 14:17:30 +0000 Received: by finisterre.ee.mobilebroadband (Postfix, from userid 1000) id F40AB44000C; Mon, 6 May 2019 15:17:25 +0100 (BST) Date: Mon, 6 May 2019 23:17:25 +0900 From: Mark Brown To: Linus Torvalds Cc: linux-kernel@vger.kernel.org Subject: [GIT PULL] regmap updates for v5.2 Message-ID: <20190506141725.GS14916@sirena.org.uk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="KI6XeYrntNhU1GwB" Content-Disposition: inline X-Cookie: -- I have seen the FUN -- User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --KI6XeYrntNhU1GwB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The following changes since commit 085b7755808aa11f78ab9377257e1dad2e6fa4bb: Linux 5.1-rc6 (2019-04-21 10:45:57 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git tags/regmap-v5.2 for you to fetch changes up to 615c4d9a50e25645646c3bafa658aedc22ab7ca9: Merge branch 'regmap-5.2' into regmap-next (2019-04-25 20:27:04 +0100) ---------------------------------------------------------------- regmap: Updates for v5.2 A larger than usual set of changes, though mainly small: - An optimization to the debugfs code to greatly improve performance when dumping extremely sparse register maps from Lucas Tanure. - Stricter enforcement of writability checks from Han Nandor. - A fix for default interrupt mode configuration from Srinivas Kandagatla. - SPDX header conversion from Greg Kroah-Hartman. ---------------------------------------------------------------- Greg Kroah-Hartman (1): regmap: add proper SPDX identifiers on files that did not have them. Han Nandor (1): regmap: verify if register is writeable before writing operations Lucas Tanure (2): regmap: debugfs: Replace code by already existing function regmap: debugfs: Jump to the next readable register Mark Brown (2): Merge branch 'regmap-5.1' into regmap-linus Merge branch 'regmap-5.2' into regmap-next Srinivas Kandagatla (1): regmap: regmap-irq: fix getting type default values drivers/base/regmap/internal.h | 5 +--- drivers/base/regmap/regcache-flat.c | 18 +++++-------- drivers/base/regmap/regcache-lzo.c | 18 +++++-------- drivers/base/regmap/regcache-rbtree.c | 18 +++++-------- drivers/base/regmap/regcache.c | 18 +++++-------- drivers/base/regmap/regmap-ac97.c | 22 ++++------------ drivers/base/regmap/regmap-debugfs.c | 48 ++++++++++++++++++++++------------- drivers/base/regmap/regmap-i2c.c | 18 +++++-------- drivers/base/regmap/regmap-irq.c | 21 +++++---------- drivers/base/regmap/regmap-mmio.c | 22 ++++------------ drivers/base/regmap/regmap-spi.c | 18 +++++-------- drivers/base/regmap/regmap-spmi.c | 29 ++++++++------------- drivers/base/regmap/regmap-w1.c | 16 +++++------- drivers/base/regmap/regmap.c | 27 ++++++++------------ 14 files changed, 118 insertions(+), 180 deletions(-) --KI6XeYrntNhU1GwB Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAlzQQfUACgkQJNaLcl1U h9Dd4gf/cSTSSfhTIO4bdhqceRFqe1pezQLu/9Hxh6Uhw9RBUDRYc4ZJEcZT94bv HBS//e1IKPkuXdle651SZts325u2ybj4GRJv8ViZvgikifWGRUFEx4FUNnQXyi6j ZUF8TwtZnsQCYWuAWhn1BPG8Y5VCzMf5VIAw1D5BOYXUDgZqMDEPJG4o5sjEw+i/ wtfi6oN3AyLd/I3xm3OhCwtTIjHGixJX6YAJktb5FKV0KxuCFWejOQ8Wlv7edszH LYVVH8evDMDjoHe2DVqowPqrMhrREbVD41I07Yau/GKIeuvegqoPd3rvxqhYPMyt JUpuWDYV6uSlEcRsUATHLVKPZbsXKw== =QKRj -----END PGP SIGNATURE----- --KI6XeYrntNhU1GwB--