From patchwork Tue Aug 3 08:18:56 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Boyd X-Patchwork-Id: 12415601 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=-24.7 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,USER_AGENT_GIT 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 AB953C4338F for ; Tue, 3 Aug 2021 08:18:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 83C7D60C41 for ; Tue, 3 Aug 2021 08:18:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234414AbhHCITI (ORCPT ); Tue, 3 Aug 2021 04:19:08 -0400 Received: from mail.kernel.org ([198.145.29.99]:48292 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234238AbhHCITI (ORCPT ); Tue, 3 Aug 2021 04:19:08 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 5F3DB60F48; Tue, 3 Aug 2021 08:18:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1627978737; bh=jo1vkTLSsn7o97jvaxaVfv1Rsk4Y3N0xg2r+xbu7uuY=; h=From:To:Cc:Subject:Date:From; b=r2fGxeWs95g1Eu6yjJQUDShK+xub4RuOqsjJmPoJ+XxjUoHgZf3qoGprsYVUZGj78 UjsyR49mK9ME2xiAoGnV+01NL+lPrTph7gBzqWbo+9Hx/9bsYfEhK+T5+OYmZ1+gjF J6KsTv9BKdOYuwTghi5SMeg8R0YSU3WkwKlBHY8xuMxPcXX86rkXrnx3cYiZt4ul1t 6jUVZ6HJwRqkCZeuNOtlxtmeuAzgtKpGkITDCGyf9vTls7ZIKr85YXsUunmkB+iDk0 7KqrXLyC/eqa2cdoPibWSUhkeeewjgEAFTp9fYvsne0ulm4dk+4bvYuZN0WuOtujiD uahTRuW6fyZcg== From: Stephen Boyd To: Linus Torvalds Cc: Michael Turquette , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] clk fixes for v5.14-rc4 Date: Tue, 3 Aug 2021 01:18:56 -0700 Message-Id: <20210803081856.3896288-1-sboyd@kernel.org> X-Mailer: git-send-email 2.32.0.554.ge1b32706d8-goog MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3: Linux 5.14-rc1 (2021-07-11 15:07:40 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git tags/clk-fixes-for-linus for you to fetch changes up to f828b0bcacef189edbd247e9f48864fc36bfbe33: clk: fix leak on devm_clk_bulk_get_all() unwind (2021-07-31 00:53:38 -0700) ---------------------------------------------------------------- A collection of clk driver fixes and one core clk API fix - Fix stm32 clk data to avoid a crash early on - Fix a randconfig build error in HiSilicon clk driver - Avoid an oops at boot on Qualcomm MSM8936 SoCs due to an improper consolidation of structs - Fix imbalanced disabling of the unused MMC clock on Tegra210 Jetson Nano - Plug a memory leak in devm_clk_bulk_get_all() unwind path ---------------------------------------------------------------- Brian Norris (1): clk: fix leak on devm_clk_bulk_get_all() unwind Dario Binacchi (1): clk: stm32f4: fix post divisor setup for I2S/SAI PLLs Dmitry Osipenko (1): clk: tegra: Implement disable_unused() of tegra_clk_sdmmc_mux_ops Randy Dunlap (1): clk: hisilicon: hi3559a: select RESET_HISI Shawn Guo (1): clk: qcom: smd-rpm: Fix MSM8936 RPM_SMD_PCNOC_A_CLK drivers/clk/clk-devres.c | 9 ++++++++- drivers/clk/clk-stm32f4.c | 10 +++++----- drivers/clk/hisilicon/Kconfig | 1 + drivers/clk/qcom/clk-smd-rpm.c | 2 +- drivers/clk/tegra/clk-sdmmc-mux.c | 10 ++++++++++ 5 files changed, 25 insertions(+), 7 deletions(-)