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 C83D7C433EF for ; Thu, 17 Feb 2022 20:20:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245701AbiBQUVB (ORCPT ); Thu, 17 Feb 2022 15:21:01 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:46556 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237751AbiBQUU7 (ORCPT ); Thu, 17 Feb 2022 15:20:59 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 26D0BBAB80; Thu, 17 Feb 2022 12:20:44 -0800 (PST) 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 dfw.source.kernel.org (Postfix) with ESMTPS id A3F7661DAD; Thu, 17 Feb 2022 20:20:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F1D68C340E8; Thu, 17 Feb 2022 20:20:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1645129243; bh=sx8mrhtZybxoA/xwGIindVNL5oiE54Uyr9+FkKocTuA=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=dBsuc10E9HHQ0xqa/0XRq9MtCU3Pk9Re+kV/JRIiSXh1y3Png2mNS/DXGUmCx02YG ULVwBZaBf5XhRbjnTVoRlrV6P3Z8IaKnthq4OkrI9/S54Lv8Ky1tIPN1i8DiWYU9pT 2C/nsy8ML3cxCaDm1xrJbuCmKDAJ/ZtjUxEEhIc0q9f8uJzjPi+uuldVIYxJ21qjMx v06fnNvn98nUSEqh2XYwjsB11pS22npKW302AyA1+H/f1Dbv2oqJS+chwKI7AZGXAy ldB8yxRpX5ktnRnZFrxnqVtvWoiCBTdm7zNjGyGJM9hE2uzbgVed0BacVnavlTfuy3 5fLHG12kegJgg== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220208124034.414635-3-wenst@chromium.org> References: <20220208124034.414635-1-wenst@chromium.org> <20220208124034.414635-3-wenst@chromium.org> Subject: Re: [PATCH v3 02/31] clk: mediatek: gate: Consolidate gate type clk related code From: Stephen Boyd Cc: Chen-Yu Tsai , Chun-Jie Chen , AngeloGioacchino Del Regno , Miles Chen , linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org To: Chen-Yu Tsai , Matthias Brugger , Michael Turquette Date: Thu, 17 Feb 2022 12:20:41 -0800 User-Agent: alot/0.10 Message-Id: <20220217202042.F1D68C340E8@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting Chen-Yu Tsai (2022-02-08 04:40:05) > Right now some bits of the gate type clk code are in clk-gate.[ch], but > other bits are in clk-mtk.[ch]. This is different from the cpumux and > mux type clks, for which all of the code are found in the same files. >=20 > Move the functions that register multiple clks from a given list, > mtk_clk_register_gates_with_dev() and mtk_clk_register_gates(), to > clk-gate.[ch] to consolidate all the code for the gate type clks. >=20 > This commit only moves code with minor whitespace fixups to correct > the code style. Further improvements, such as internalizing various > functions and structures will be done in later commits. >=20 > Signed-off-by: Chen-Yu Tsai > Reviewed-by: Miles Chen > Reviewed-by: AngeloGioacchino Del Regno > --- Applied to clk-next