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 F4100C05027 for ; Thu, 26 Jan 2023 22:03:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232140AbjAZWDU (ORCPT ); Thu, 26 Jan 2023 17:03:20 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44974 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229681AbjAZWDS (ORCPT ); Thu, 26 Jan 2023 17:03:18 -0500 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 1A2CF2886A for ; Thu, 26 Jan 2023 14:03:17 -0800 (PST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7657D2F; Thu, 26 Jan 2023 14:03:59 -0800 (PST) Received: from pluto (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 9CC973F71E; Thu, 26 Jan 2023 14:03:16 -0800 (PST) Date: Thu, 26 Jan 2023 22:03:10 +0000 From: Cristian Marussi To: Mark Brown Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, sudeep.holla@arm.com, Jim Quinlan , Florian Fainelli Subject: Re: [PATCH] regulator: scmi: Allow for zero voltage domains Message-ID: References: <20230126180511.766373-1-cristian.marussi@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 26, 2023 at 06:38:20PM +0000, Mark Brown wrote: > On Thu, Jan 26, 2023 at 06:05:11PM +0000, Cristian Marussi wrote: > > SCMI Voltage protocol allows the platform to report no voltage domains > > on discovery, while warning the user about such an odd configuration. > > This patch removes all diagnostics in this case? You'll still see a warning from the SCMI core Voltage Protocol saying: "No Voltage domains found." but nothing from the regulator driver itself which will successfully probe, albeit not creating any regulators...if this is what you mean. Thanks for having a look, Cristian