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=-21.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS 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 3AA75C433E6 for ; Tue, 26 Jan 2021 13:21:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0412A21E92 for ; Tue, 26 Jan 2021 13:21:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2392618AbhAZNRB (ORCPT ); Tue, 26 Jan 2021 08:17:01 -0500 Received: from mail.kernel.org ([198.145.29.99]:34792 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2404246AbhAZMqK (ORCPT ); Tue, 26 Jan 2021 07:46:10 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 37C7123104; Tue, 26 Jan 2021 12:45:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1611665129; bh=jc3jk7zdFTpc4OCqxDpiaeq59UaQ0zVzd2okvWJnK0k=; h=From:To:Cc:Subject:Date:From; b=VwM0R70f5mCKBMPG6MizOTQGdQsSd5f9qbHbneivJMl0X/ywm332UB3s9WS1njMM3 gTGsZY0ylXfqIjFAHRsIAgJoyFu6DqFqDLTz6iNa4cbFeLzlcogUeQRAeA+SWTCtGE JLhwdN6KDV5puZ4Y4KELWjd7zg0sRprD/EesK5RX4FWfKjQwJnzfqImARVAkNoGost AGitMGPsRAt5+BMIGH4vVbBBdjErSAVar0pgozGcjHRctHmJ6F+DA7W5Urnnomk0dX stGx2SaNCdgianuiQjf84Iic+RffQU5RSh86p2op5pmA2gfBVHUUbXDl50WkAdontI IqKOp0wBvbYbw== From: Mark Brown To: Linus Torvalds Cc: Liam Girdwood , linux-kernel@vger.kernel.org, Mark Brown Subject: [GIT PULL] regulator fixes for v5.11-rc5 Date: Tue, 26 Jan 2021 12:44:33 +0000 Message-Id: <20210126124529.37C7123104@mail.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit 7c53f6b671f4aba70ff15e1b05148b10d58c2837: Linux 5.11-rc3 (2021-01-10 14:34:50 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-fix-v5.11-rc5 for you to fetch changes up to 14a71d509ac809dcf56d7e3ca376b15d17bd0ddd: regulator: Fix lockdep warning resolving supplies (2021-01-22 14:03:07 +0000) ---------------------------------------------------------------- regulator: Fixes for v5.11 The main thing here is a change to make sure that we don't try to double resolve the supply of a regulator if we have two probes going on simultaneously, plus an incremental fix on top of that to resolve a lockdep issue it introduced. There's also a patch from Dmitry Osipenko adding stubs for some functions to avoid build issues in consumers in some configurations. ---------------------------------------------------------------- David Collins (1): regulator: core: avoid regulator_resolve_supply() race condition Dmitry Osipenko (1): regulator: consumer: Add missing stubs to regulator/consumer.h Mark Brown (2): Merge v5.11-rc3 regulator: Fix lockdep warning resolving supplies drivers/regulator/core.c | 44 ++++++++++++++++++++++++++++---------- include/linux/regulator/consumer.h | 30 ++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 11 deletions(-)