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=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=unavailable 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 D6CDAC31E4B for ; Fri, 14 Jun 2019 17:43:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B4041217D6 for ; Fri, 14 Jun 2019 17:43:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560534227; bh=BtDCf12TGdb1xn6LpgZ0JJLH/0SL+ngyj/+nSlrc6Es=; h=In-Reply-To:References:To:From:Subject:Cc:Date:List-ID:From; b=gDk5oRO8sqd8m8ToAfjQDyeVnkQm2IfiJ6ltrT5EWmBmQ5JYAVaqNJEugjQpnOFNg Nf1TbGa/UnQIGBOZ6kVMTHHuvjO3kBV1FjDlpkBogmVt6obeHTHrsRKhUncQpd0Zu/ mbUrvm+z3pF2uASTSZA60iyxrbkldDmyqyFGwc+c= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726209AbfFNRnn (ORCPT ); Fri, 14 Jun 2019 13:43:43 -0400 Received: from mail.kernel.org ([198.145.29.99]:40842 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726082AbfFNRnn (ORCPT ); Fri, 14 Jun 2019 13:43:43 -0400 Received: from kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id DBED2217D6; Fri, 14 Jun 2019 17:43:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560534223; bh=BtDCf12TGdb1xn6LpgZ0JJLH/0SL+ngyj/+nSlrc6Es=; h=In-Reply-To:References:To:From:Subject:Cc:Date:From; b=vsFm6CaywHnFbxL0coOrDPK9iTyz03GVrC6NChXvyDD9cOdQMwR3X/S/mHfqsNA/E K0NPrm27dMLVr8svfuhNq77NUgNETjucsJpVVW+xEO6k1RfnoI/ianDlZs5gVGtoo0 Bq2DRwEPGVfdXZGiVbq1pk5QV1CBPXydhxHUOuuo= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <1559743299-11576-1-git-send-email-jonathanh@nvidia.com> References: <1559743299-11576-1-git-send-email-jonathanh@nvidia.com> To: Jon Hunter , Michael Turquette , Peter De Schrijver , Thierry Reding From: Stephen Boyd Subject: Re: [PATCH V2] clk: tegra210: Fix default rates for HDA clocks Cc: linux-clk@vger.kernel.org, linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org, Sameer Pujar , Jon Hunter , stable@vger.kernel.org User-Agent: alot/0.8.1 Date: Fri, 14 Jun 2019 10:43:42 -0700 Message-Id: <20190614174342.DBED2217D6@mail.kernel.org> Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Jon Hunter (2019-06-05 07:01:39) > Currently the default clock rates for the HDA and HDA2CODEC_2X clocks > are both 19.2MHz. However, the default rates for these clocks should > actually be 51MHz and 48MHz, respectively. The current clock settings > results in a distorted output during audio playback. Correct the default > clock rates for these clocks by specifying them in the clock init table > for Tegra210. >=20 > Cc: stable@vger.kernel.org > Signed-off-by: Jon Hunter > Acked-by: Thierry Reding > --- Applied to clk-fixes