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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 62C77C43334 for ; Thu, 16 Jun 2022 07:50:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1358692AbiFPHud (ORCPT ); Thu, 16 Jun 2022 03:50:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40482 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229751AbiFPHuc (ORCPT ); Thu, 16 Jun 2022 03:50:32 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 237DD56F98; Thu, 16 Jun 2022 00:50:32 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id BFA25B8213C; Thu, 16 Jun 2022 07:50:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 43C05C34114; Thu, 16 Jun 2022 07:50:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655365829; bh=c1Fklzn9ReeW/FcEJgHJCunMay9LhWESILSmNJZ7Ecw=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=IAINSoDeMlPobTkRYuI5dYGy+M+os6G3xLXGYB61huHOP+CNZXmZgiwVaae5PcJsE QyTotzBG+4ZeIY8k0Sv9R682mwhORZBBzlIjNjoybchW73VRIfBMvl557wmPsaufef HIrhRFkedg6v2FjMDScFjIke+E2jrYBiqaYGV7SNP8m+4Pmj7Mt16JpeNZiKASOAeh Anpy2xCOYEPAm4LbTquZIFy7aL5v29KuJ1YsRSOJuQ86+t1W+HnZMO13iNEIc45NI/ P8PBWxqR3dmFZI7qPzYdYXUjgRO+OhSvv91xrucVIICjKcAqMq5zUmKEgMvWzbWyLB Z1yFuiPcy+rug== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220615064306.22254-1-tony@atomide.com> References: <20220615064306.22254-1-tony@atomide.com> Subject: Re: [PATCH v2 1/1] clk: ti: Stop using legacy clkctrl names for omap4 and 5 From: Stephen Boyd Cc: Michael Turquette , Tero Kristo , linux-omap@vger.kernel.org, Tero Kristo To: Tony Lindgren , linux-clk@vger.kernel.org Date: Thu, 16 Jun 2022 00:50:27 -0700 User-Agent: alot/0.10 Message-Id: <20220616075029.43C05C34114@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Quoting Tony Lindgren (2022-06-14 23:43:06) > With the addition of clock-output-names, we can now unify the internal > clock naming for omap4 and 5 to follow the other TI SoCs. >=20 > We are still using legacy clkctrl names for omap4 and 5 based on the clock > manager name which is wrong. Instead, we want to use the clkctrl clock > based naming. >=20 > We must now also drop the legacy TI_CLK_CLKCTRL_COMPAT quirk for the > clkctrl clock. >=20 > This change will allow further devicetree warning cleanup as already > done for am3/4 and dra7. >=20 > Cc: linux-clk@vger.kernel.org > Cc: Stephen Boyd > Cc: Tero Kristo > Signed-off-by: Tony Lindgren > --- Applied to clk-ti-dt and merged into clk-next