From patchwork Thu Jun 27 20:25:49 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Boyd X-Patchwork-Id: 11020463 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D547913B4 for ; Thu, 27 Jun 2019 20:25:51 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C8D9F27EE2 for ; Thu, 27 Jun 2019 20:25:51 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B7A4327F86; Thu, 27 Jun 2019 20:25:51 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5E57827EE2 for ; Thu, 27 Jun 2019 20:25:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726497AbfF0UZu (ORCPT ); Thu, 27 Jun 2019 16:25:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:48256 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726484AbfF0UZu (ORCPT ); Thu, 27 Jun 2019 16:25:50 -0400 Received: from mail.kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8148820665; Thu, 27 Jun 2019 20:25:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1561667149; bh=I9NSv9sbBhwgKZQjsXY6lP1+iWLSMecAorV7s1EJEfU=; h=From:To:Cc:Subject:Date:From; b=Ym7msgxzEJB1mvNZbYNhb2tCXlGFP2wQ/LhbO2+Or6fksQcvqQjGjvw2zfGS+Qq0o bKZCgjGCh8ND7DAU0NqDm27NzBrkG+C6s5v2xKyoAiPnnSS/KG+u2rbkr0vytSoBge wdF4IM+oXFxm1Hzi4cFT0wm+1QoqNV5WM0eLd9Lo= 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.2-rc6 Date: Thu, 27 Jun 2019 13:25:49 -0700 Message-Id: <20190627202549.45667-1-sboyd@kernel.org> X-Mailer: git-send-email 2.22.0.410.gd8fdbe21b5-goog MIME-Version: 1.0 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The following changes since commit 1cc54078d104f5b4d7e9f8d55362efa5a8daffdb: clk: ti: clkctrl: Fix clkdm_clk handling (2019-05-21 11:43: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 74684cce5ebd567b01e9bc0e9a1945c70a32f32f: clk: socfpga: stratix10: fix divider entry for the emac clocks (2019-06-25 13:40:05 -0700) ---------------------------------------------------------------- A handful of clk driver fixes and one core framework fix - Do a DT/firmware lookup in clk_core_get() even when the DT index is a nonsensical value - Fix some clk data typos in the Amlogic DT headers/code - Avoid returning junk in the TI clk driver when an invalid clk is looked for - Fix dividers for the emac clks on Stratix10 SoCs - Fix default HDA rates on Tegra210 to correct distorted audio ---------------------------------------------------------------- Dinh Nguyen (1): clk: socfpga: stratix10: fix divider entry for the emac clocks Jerome Brunet (1): clk: meson: fix MPLL 50M binding id typo Jon Hunter (1): clk: tegra210: Fix default rates for HDA clocks Martin Blumenstingl (1): clk: meson: meson8b: fix a typo in the VPU parent names array variable Stephen Boyd (2): Merge tag 'clk-meson-5.2-1-fixes' of https://github.com/BayLibre/clk-meson into clk-fixes clk: Do a DT parent lookup even when index < 0 Tony Lindgren (1): clk: ti: clkctrl: Fix returning uninitialized data drivers/clk/clk.c | 2 +- drivers/clk/meson/g12a.c | 4 ++-- drivers/clk/meson/g12a.h | 2 +- drivers/clk/meson/meson8b.c | 10 +++++----- drivers/clk/socfpga/clk-s10.c | 4 ++-- drivers/clk/tegra/clk-tegra210.c | 2 ++ drivers/clk/ti/clkctrl.c | 7 +++++-- include/dt-bindings/clock/g12a-clkc.h | 2 +- 8 files changed, 19 insertions(+), 14 deletions(-)