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 5A317C64EC4 for ; Mon, 6 Mar 2023 19:30:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229968AbjCFTas (ORCPT ); Mon, 6 Mar 2023 14:30:48 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57548 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229743AbjCFTap (ORCPT ); Mon, 6 Mar 2023 14:30:45 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4B81F38004; Mon, 6 Mar 2023 11:30:41 -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 ams.source.kernel.org (Postfix) with ESMTPS id AE972B810C6; Mon, 6 Mar 2023 19:30:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 54BB4C433D2; Mon, 6 Mar 2023 19:30:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1678131038; bh=y2LTQiZFTAycrk7HmfcrNSsVpGXsaOa8A/dbm5J1ayY=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=Ie3nQYJsv+RzZ1NZ+BDULCYZn8GB/e9JROMtiMVzWYrNPU1zpVkQi5HJLmBZAdqPL iuM97EkjQUaMZjHzeUJJ7NzfkzOKvZRFae8oHDZTI6YLC6iLb4pM410EteMs9qm9vH pQLsVPoMgEYO8QA3uAvE77q8jUy+z/9MnGoTxoaj8aRtr7Epgz8iCMjqx4hblPQE0X MMfoeZ8PF6aPtPgUhpuS5hySkAfBvuoiQRjw2b2o0axcB5ZgJDF7HNzrg9Xsa0QiDr yvTLF16iw6j/kdZBSfALao4x57KdH7CkiU8UhvcVCgohJb5lSD0nFh0PAXXqFv6HPz QGs/OxX2cbXBw== Message-ID: Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20230226053953.4681-3-rdunlap@infradead.org> References: <20230226053953.4681-1-rdunlap@infradead.org> <20230226053953.4681-3-rdunlap@infradead.org> Subject: Re: [PATCH 2/8] clk: HI655X: select REGMAP instead of depending on it From: Stephen Boyd Cc: Randy Dunlap , Riku Voipio , Michael Turquette , linux-clk@vger.kernel.org To: Randy Dunlap , linux-kernel@vger.kernel.org Date: Mon, 06 Mar 2023 11:30:36 -0800 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting Randy Dunlap (2023-02-25 21:39:47) > REGMAP is a hidden (not user visible) symbol. Users cannot set it > directly thru "make *config", so drivers should select it instead of > depending on it if they need it. >=20 > Consistently using "select" or "depends on" can also help reduce > Kconfig circular dependency issues. >=20 > Therefore, change the use of "depends on REGMAP" to "select REGMAP". >=20 > Fixes: 3a49afb84ca0 ("clk: enable hi655x common clk automatically") > Signed-off-by: Randy Dunlap > Cc: Riku Voipio > Cc: Stephen Boyd > Cc: Michael Turquette > Cc: linux-clk@vger.kernel.org > --- Applied to clk-fixes