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 D1A23C433EF for ; Thu, 5 May 2022 00:24:22 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 7399A83E40; Thu, 5 May 2022 02:24:17 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 25EF283F03; Thu, 5 May 2022 02:24:02 +0200 (CEST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by phobos.denx.de (Postfix) with ESMTP id 1322183F05 for ; Thu, 5 May 2022 02:23:55 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=andre.przywara@arm.com 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 3F84711FB; Wed, 4 May 2022 17:23:54 -0700 (PDT) Received: from slackpad.lan (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 4B1F63FA27; Wed, 4 May 2022 17:23:53 -0700 (PDT) Date: Wed, 4 May 2022 20:46:45 +0100 From: Andre Przywara To: Samuel Holland Cc: u-boot@lists.denx.de, Jagan Teki , Lukasz Majewski , Sean Anderson Subject: Re: [PATCH 1/2] clk: sunxi: Add additional RTC compatible strings Message-ID: <20220504204645.6997483d@slackpad.lan> In-Reply-To: <20220501033837.9155-1-samuel@sholland.org> References: <20220501033837.9155-1-samuel@sholland.org> Organization: Arm Ltd. X-Mailer: Claws Mail 4.1.0 (GTK 3.24.31; x86_64-slackware-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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.5 at phobos.denx.de X-Virus-Status: Clean On Sat, 30 Apr 2022 22:38:36 -0500 Samuel Holland wrote: > Compatible strings for some new RTC hardware variants were added to > the binding. Add them to the driver in preparation for supporting > those new SoCs. > > Signed-off-by: Samuel Holland Given the trivial implementation of this clock ;-) ... Reviewed-by: Andre Przywara > --- > > drivers/clk/sunxi/clk_sun6i_rtc.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/clk/sunxi/clk_sun6i_rtc.c b/drivers/clk/sunxi/clk_sun6i_rtc.c > index 0c280d221b..697b187a82 100644 > --- a/drivers/clk/sunxi/clk_sun6i_rtc.c > +++ b/drivers/clk/sunxi/clk_sun6i_rtc.c > @@ -24,6 +24,8 @@ static const struct udevice_id sun6i_rtc_ids[] = { > { .compatible = "allwinner,sun8i-v3-rtc" }, > { .compatible = "allwinner,sun50i-h5-rtc" }, > { .compatible = "allwinner,sun50i-h6-rtc" }, > + { .compatible = "allwinner,sun50i-h616-rtc" }, > + { .compatible = "allwinner,sun50i-r329-rtc" }, > { } > }; >