Received: by 2002:a25:31c3:0:0:0:0:0 with SMTP id x186csp1042133ybx; Tue, 5 Nov 2019 09:21:19 -0800 (PST) X-Google-Smtp-Source: APXvYqxNkgzj7cRj77tYVLKot4eos+8+3Zc8V4rSx+PMUCbmQ008CndCC7C1yAxlwVNUycpOTclb X-Received: by 2002:aa7:cb18:: with SMTP id s24mr5863104edt.281.1572974478980; Tue, 05 Nov 2019 09:21:18 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1572974478; cv=none; d=google.com; s=arc-20160816; b=rjTatrI9PTFtXF18gMqnlWRJoxy8NdwJVjrTNwhZn75DK+LbNTUP4yRnp9PX/GXG3U 0eW2lWnmsscCCoeuSl00HWAh5y39pst23cFZWkMqAc+2Hd2EVccxOE+a3ommab92Tqc2 jKYX0HcWN1wzyaHzsfKalcXJUp2W3ZXizd62KHtCHMFi1BiObKpcQI5lJtTGtDV5LrnX ifyf3XaDXwsDB9cxWZDxO6W6T1WSjjsEy7OCem27PNkcCr93RGHBHsaCZMCXjkRvu4gB p1IqUyCX6WjRx82n79NFyqoASFBLEWSNBsK1/GrMtwfU6UtkeGuKFaXXNu+XmE0lRE9W 79mQ== 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=+jLs6jEiGUuxmChaOtv2GeCyxFpfA/rZatKQ5TnS5yo=; b=AOCJWx60wljOrSVf4qGCbYX76nZh+cJh14UoKrpNEeA/39hLNt93FsH4ph4j8EMFLm zBxDmmVSkxYZP0Wz+5p1ah3rCeju0lIvJdMvKd9gRnFtmZD533EniEogFRWMvVan4Sdq kAYUHsEPufdg0XYCDurqUVGsY0C9ooMTAH3DASPjNy6xqVTevQdEg0YEBKHuRS+86elu qsORSFZ9tRTqEjJ3L0ZGp4oZnnv6rOscE8Ik9Wfb6UGl23BFUZXxy2vhQRdx0fhIUMzv 7ywymonjcbziluKguZSvWCJ8PSE//ic4mu9B0vesLLJtJ4i4CIxU8hZXx2UAOLpXGSXV 7sPQ== 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 w8si11850741edi.304.2019.11.05.09.20.53; Tue, 05 Nov 2019 09:21:18 -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 S2390489AbfKERSd (ORCPT + 99 others); Tue, 5 Nov 2019 12:18:33 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:43293 "EHLO relay5-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389659AbfKERSd (ORCPT ); Tue, 5 Nov 2019 12:18:33 -0500 X-Originating-IP: 92.137.17.54 Received: from localhost (alyon-657-1-975-54.w92-137.abo.wanadoo.fr [92.137.17.54]) (Authenticated sender: alexandre.belloni@bootlin.com) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 932D31C0007; Tue, 5 Nov 2019 17:18:28 +0000 (UTC) Date: Tue, 5 Nov 2019 18:18:27 +0100 From: Alexandre Belloni To: Chuhong Yuan Cc: Alessandro Zummo , Florian Fainelli , bcm-kernel-feedback-list@broadcom.com, linux-rtc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] rtc: brcmstb-waketimer: add missed clk_disable_unprepare Message-ID: <20191105171827.GE8309@piout.net> References: <20191105160043.20018-1-hslester96@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191105160043.20018-1-hslester96@gmail.com> 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 06/11/2019 00:00:43+0800, Chuhong Yuan wrote: > This driver forgets to disable and unprepare clock when remove. > Add a call to clk_disable_unprepare to fix it. > > Fixes: c4f07ecee22e ("rtc: brcmstb-waketimer: Add Broadcom STB wake-timer") > Signed-off-by: Chuhong Yuan > --- > Changes in v2: > - Remove the check for timer->clk and add fixes tag. > > drivers/rtc/rtc-brcmstb-waketimer.c | 1 + > 1 file changed, 1 insertion(+) > Applied, thanks. -- Alexandre Belloni, Bootlin Embedded Linux and Kernel engineering https://bootlin.com