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 4A5A5C433EF for ; Fri, 20 May 2022 22:49:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241949AbiETWtW (ORCPT ); Fri, 20 May 2022 18:49:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60670 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230504AbiETWtU (ORCPT ); Fri, 20 May 2022 18:49:20 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C31D1179C1A; Fri, 20 May 2022 15:49:19 -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 sin.source.kernel.org (Postfix) with ESMTPS id 3374BCE2B14; Fri, 20 May 2022 22:49:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 56AA5C385A9; Fri, 20 May 2022 22:49:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1653086956; bh=QUSuhqBatMv8a5rfEeAnWy70VQgOK4AIq2PZHng3jEo=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=hnN5/2oY8U65cCyKnn/alQ9Tsc5vqCKaACJJVs6QupvrwF7Lb2r/78IBzIFN8Rm2s j0R7HfW6Di/h4KZNeyN5J6SdKklckpd4pbO86hPNcVUS/I4yLIjNLwZReDtK9/MIWI 2X1D60VXtd/WzylqG03HYtx9tGQTro9ZXuPhp2Md5LFb1mEMT87PHMWmTwKOnQT/nE EFcXophlTAocIBVwGqTnjMsKRX2awH9skaIdk50vG18BsN3KSeZ/ngO9xNKYrl2UUi qWxjp7KqXUrT4rnkzcKOw5bBl1INz7iVqSUz2PsQV7uyyCT8bNC9bDqIPKRoGPdYLK rmmCjrm3vzpXg== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: References: <20220513175339.2981959-1-dmitry.baryshkov@linaro.org> <20220513175339.2981959-3-dmitry.baryshkov@linaro.org> <20220518175808.EC29AC385A5@smtp.kernel.org> Subject: Re: [PATCH v6 2/5] clk: qcom: regmap: add PHY clock source implementation From: Stephen Boyd Cc: Prasad Malisetty , Vinod Koul , linux-arm-msm@vger.kernel.org, linux-pci@vger.kernel.org, linux-clk@vger.kernel.org To: Andy Gross , Bjorn Andersson , Bjorn Helgaas , Dmitry Baryshkov , Johan Hovold , Krzysztof =?utf-8?q?Wilczy=C5=84ski?= , Lorenzo Pieralisi , Manivannan Sadhasivam , Michael Turquette , Rob Herring , Stanimir Varbanov Date: Fri, 20 May 2022 15:49:14 -0700 User-Agent: alot/0.10 Message-Id: <20220520224916.56AA5C385A9@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org Quoting Dmitry Baryshkov (2022-05-19 04:16:19) > On 18/05/2022 20:58, Stephen Boyd wrote: > > Quoting Dmitry Baryshkov (2022-05-13 10:53:36) > >> diff --git a/drivers/clk/qcom/clk-regmap-phy-mux.c b/drivers/clk/qcom/= clk-regmap-phy-mux.c > >> new file mode 100644 > >> index 000000000000..d7a45f7fa1aa > >> --- /dev/null > >> +++ b/drivers/clk/qcom/clk-regmap-phy-mux.c [...] > >> + > >> +#include "clk-regmap-phy-mux.h" > >=20 > > Same for clk-regmap.h, avoid include hell. >=20 > I couldn't catch this comment. I think we need clk-regmap.h in=20 > clk-regmap-phy-mux.h as clk_regmap is a part of defined structure. >=20 Don't rely on implicit includes. It makes changing header files error prone. Also, please trim replies.