Received: by 2002:a05:6a10:a841:0:0:0:0 with SMTP id d1csp1130732pxy; Fri, 23 Apr 2021 00:30:27 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyn6CvO14Ir3VXnW4GQR+C7bCkgP8EkY0JReGN/5Ilc0VSli33/sEH/XxfW1IQo6TK3/waH X-Received: by 2002:a17:906:d154:: with SMTP id br20mr2756502ejb.28.1619163027460; Fri, 23 Apr 2021 00:30:27 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1619163027; cv=none; d=google.com; s=arc-20160816; b=YLcAPKZfxdi3tLYoXceNWRf5FQxTT+VTRDVpw8xTUgPTel/fk+6QSSefJG5ZkcPDd8 rkNhpztbQEdS2Csj6P2+UNQL5MpYY9cii99lDGYNVxNDCaoMSXjSDyBlqvdVPNVXIM9U JxFn3SUOb0N9ZWEL7AkW6lDUKrfXSzwrqLWZTpl8OAYt7XMYdVymylxThy0rjfVA3Wsb oeaSt+E1lLgOiTXE4XEzsWTXs9ZDkXsTJhK6K7L88aw9etuVYYJcWVdgGkjaWJBMihmK Q6o/o124yge1VC3rTJIcHaWdQMrRHb3oG8+9+SYMw0SDIlMEMnxevf/N2IjkgjOFOftw R3lQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :organization:references:in-reply-to:message-id:subject:cc:to:from :date; bh=iAN3fO/N40h5V4mffWCaThvHqAmjBmclmjxjEMHRugQ=; b=YTwbQ8yGhvrLP3xf2YYLvRME826yOwu29CZPqMlNKmq0gE8bad1Fx7r8SMnLUy7Siv ZUVPNIdqPmUEa82zaa5t3efa9AeCAb6QnCtWp+IBWJWM9whMaoMwiUbGiZb9+hcxPToe ijTFR4PB9oSkbjI00jlxnWbIbshBuz7ijl6A8lBwedrOOIggauiBzRHJ5NB6uDpz5g9T LIcE9hKw8eXTR/GqaRxlfCZnGH2swtAI0xFEjD4sd9YpWv85wLKplkZOS47Ir87maB2Q /SzX+hW/5nPv371QzdQhLdMGIYKuIwI8AbLQ7gxZ5mnSJJVbwiJnlFysS6uR410EbhqI EIrg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id c1si4457547edy.406.2021.04.23.00.30.02; Fri, 23 Apr 2021 00:30:27 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240729AbhDWH1j (ORCPT + 99 others); Fri, 23 Apr 2021 03:27:39 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:43521 "EHLO relay12.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229935AbhDWH1j (ORCPT ); Fri, 23 Apr 2021 03:27:39 -0400 Received: from windsurf (unknown [91.174.235.35]) (Authenticated sender: thomas.petazzoni@bootlin.com) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 107A7200004; Fri, 23 Apr 2021 07:27:00 +0000 (UTC) Date: Fri, 23 Apr 2021 09:27:00 +0200 From: Thomas Petazzoni To: Christophe JAILLET Cc: mturquette@baylibre.com, sboyd@kernel.org, gregory.clement@bootlin.com, thomas.petazzoni@free-electrons.com, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH 0/4] clk: mvebu: Fix some error handling paths + do some clean-up Message-ID: <20210423092700.6a857460@windsurf> In-Reply-To: References: Organization: Bootlin X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, On Fri, 23 Apr 2021 08:24:52 +0200 Christophe JAILLET wrote: > Also, I wonder if the drivers in drivers/clk/mvebu are used by anyone. > In order to compile-test the changes, I also had to change the 'bool' in Kconfig > by 'bool "blah"'. Without this change, it was not possible to set > CONFIG_MVEBU_CLK_CPU required by Makefile. CONFIG_MVEBU_CLK_CPU is selected by ARMADA_370_CLK and ARMADA_XP_CLK, which themselves are selected by MACH_ARMADA_370 and MACH_ARMADA_XP respectively. So unless I'm missing something, this code is definitely reachable and compiled. You can use the mvebu_v7_defconfig of ARM32, and the code will be built. Best regards, Thomas -- Thomas Petazzoni, co-owner and CEO, Bootlin Embedded Linux and Kernel engineering https://bootlin.com