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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A6774EB64D8 for ; Fri, 16 Jun 2023 09:19:41 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 317358574A; Fri, 16 Jun 2023 11:19:39 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="FNxvNtT2"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 93868860C7; Fri, 16 Jun 2023 11:19:37 +0200 (CEST) Received: from madras.collabora.co.uk (madras.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e5ab]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 28BD8847A5 for ; Fri, 16 Jun 2023 11:19:35 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=eugen.hristev@collabora.com Received: from [192.168.1.138] (unknown [192.166.149.251]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: ehristev) by madras.collabora.co.uk (Postfix) with ESMTPSA id 6BCC16606F76; Fri, 16 Jun 2023 10:19:34 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1686907174; bh=5RRZDuCI9vPyrrvwTl3iw0G1ggDMgU1+T1+qMIPhmOM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=FNxvNtT2Jnn0ADbwNrnElV0jN5zDQzvyZTvr6spiNbJL80qnyrixeb/EL4PyV1akZ cnfUo20Hh126POG5PNnDf1rkRdxK+tW3WlM6/CdH18+WoKfd3DNL89L78bXzY8x4gj WnyS3OgbxDpOcc6L9juaOauAVJRjD28IVk4+TM5BWX0dzG8MUK64xFlcws6+ylBD6A K07kSyQgd8WfdsBAUX5+uL66K/ehOI6/nTFMHqabrlOZShtkUH4pw8EK4Dm436X8Fv Rp7WwHV6Tvu1ANJx7AxDhHhIJHOyn9v3BkQrbdeJdlkY3q10LPdtjxFtl+Zl8om7P9 E4T28Pd/+B2pw== Message-ID: <9ba2d793-10ea-5aaf-e106-112699db54c8@collabora.com> Date: Fri, 16 Jun 2023 12:19:15 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 Subject: Re: [PATCH] ARM: at91: armv7: don't initialize clocks if scmi clock driver is enabled Content-Language: en-US To: thomas.perrot@bootlin.com, u-boot@lists.denx.de Cc: =?UTF-8?B?Q2zDqW1lbnQgTMOpZ2Vy?= References: <20230530090516.199426-1-thomas.perrot@bootlin.com> From: Eugen Hristev In-Reply-To: <20230530090516.199426-1-thomas.perrot@bootlin.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean On 5/30/23 12:05, thomas.perrot@bootlin.com wrote: > From: Clément Léger > > Because clock devices are initialized by the SCMI server, if > CONFIG_CLK_SCMI is defined. > > Signed-off-by: Clément Léger > Signed-off-by: Thomas Perrot > --- Applied to u-boot-at91/master , thanks !