Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp5404215ybl; Tue, 10 Dec 2019 05:35:17 -0800 (PST) X-Google-Smtp-Source: APXvYqwSYBKoQYCE7JkzBsAg4CZWm0KnIpTulgqPtDnoFqufK/ZIiMBBcqwdjXhq3mVSzVeoc2aM X-Received: by 2002:a9d:6e15:: with SMTP id e21mr25352634otr.125.1575984916980; Tue, 10 Dec 2019 05:35:16 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1575984916; cv=none; d=google.com; s=arc-20160816; b=WV+/Txl1gdELreYPFHBzNhUC2Gi9Vrvd94qqoKKvAk3Vy6jTGfAxn84eSiIMCypsVO GqCM7VbUsg57Xg3tAlgTR4FH7yM/k3RGEq0s4tunHB4R7MzXZ2+P4IoKghzLd6Lq+hDW f5l/wtx2OuBhRXplmi378Beq2I1veZQSQ1Y8My7i8rtIjKb72UU4g8EhcHsFFjpmZ9eW lEasa5XpZkCKiFi6dVtggt8QI8GJDaClJ5hIx8V5jRl00HDfWXI4dgaxIdZ4R3rDk0T5 LmGbazkk3ssnerTjonsg69HtZ+H6KLnzYpv/B3nl8OdWDu/PboQIywt59Y0Z3rnm90ap pieg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=CJ4AMgwkGIQ6qNw6NDldRYLzYHpT04EAtpzp6e1VpJQ=; b=PWZSrug4kEh5URtK/hSWEo73vj2pX4/xL1K+YwMgqQLqJ+ybrPpqkl8JuGziDKF43q wqDX4dpYoBP2FB1j4SdgPMFY03Ba6V/s4lUZfxelq3v1JuD7VZ5giWYGhhDB600m9b16 5YX5MVoOsl084P16xcx4T2mHmnO1RsGmft1JriE6d6u2xE2gJKuOmRJ57dLSfNHkQxBS 6bqPS9EiYBmmlZaRd5sYHPhV4QKc6CKTQwWrx3MfCaQbbOPOTSJav9IN1PZqjAum+cqS B7ZOCxbhDKWhL8L2oVMMnZoyDI8XGOM6S1IkojhBYO6l1XB4AxsfiBdkjebG7RyMo5+o 6GHQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r8si1793976otp.194.2019.12.10.05.35.04; Tue, 10 Dec 2019 05:35:16 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727506AbfLJNeE (ORCPT + 99 others); Tue, 10 Dec 2019 08:34:04 -0500 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:37603 "EHLO relay2-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727007AbfLJNeE (ORCPT ); Tue, 10 Dec 2019 08:34:04 -0500 X-Originating-IP: 90.182.112.136 Received: from localhost (136.112.broadband15.iol.cz [90.182.112.136]) (Authenticated sender: alexandre.belloni@bootlin.com) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id B67AC40011; Tue, 10 Dec 2019 13:34:01 +0000 (UTC) Date: Tue, 10 Dec 2019 14:33:52 +0100 From: Alexandre Belloni To: Chen-Yu Tsai Cc: Alessandro Zummo , Maxime Ripard , Chen-Yu Tsai , linux-rtc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org Subject: Re: [PATCH] rtc: sun6i: Add support for RTC clocks on R40 Message-ID: <20191210133352.GM1463890@piout.net> References: <20191205085054.6049-1-wens@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191205085054.6049-1-wens@kernel.org> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 05/12/2019 16:50:54+0800, Chen-Yu Tsai wrote: > From: Chen-Yu Tsai > > When support for the R40 in the rtc-sun6i driver was split out for a > separate compatible string, only the RTC half was covered, and not the > clock half. Unfortunately this results in the whole driver not working, > as the RTC half expects the clock half to have been initialized. > > Add support for the clock part as well. The clock part is like the H3, > but does not need to export the internal oscillator, nor does it have > a gateable LOSC external output. > > This fixes issues with WiFi and Bluetooth not working on the BPI M2U. > > Fixes: d6624cc75021 ("rtc: sun6i: Add R40 compatible") > Cc: # 5.3.x > Signed-off-by: Chen-Yu Tsai > --- > > Please merge this for fixes. > > --- > drivers/rtc/rtc-sun6i.c | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > Applied, thanks. -- Alexandre Belloni, Bootlin Embedded Linux and Kernel engineering https://bootlin.com