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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2E6DBFA3733 for ; Fri, 13 Sep 2024 08:58:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=N/faDpHDKLgK0DIxABN1XM/xRPBWb6WSfWR9z9RGKS8=; b=PwZvuBbJSb/Sbo7i6FI2GA9NGM Zru6VZhHzlrq+OLZ+EN4mW7qZM1eTM6z5y4PI8C9773QTlEe1Oqx1HwA91fZET7JqL6VoP8Tu0SvF NJ18cwTBx3zQU1ujeWT1Li7+y+7tf7iGIaoN2yJbpX3sp0eZFo8oZB5i3G+FlXvcqchuxg/XRDBFx hnC4WNWA0rRoa4FvQqCi/qFEwxovyKsO3ktgFZMSfpecGc+rv9p+H2hTfKBUFyEpkvLkOE+IRj4Wd EobesKFMEcL645GmmwIJsjjpo/EfiqXSjGM3TullMpgbD2mQtGjcFxPmvomkjB9lH+l40pw/csPm2 e/HFyehA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sp287-0000000FPor-0eHF; Fri, 13 Sep 2024 08:58:15 +0000 Received: from www.linux-watchdog.org ([185.87.125.42]) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sp271-0000000FPfx-1wW8 for linux-arm-kernel@lists.infradead.org; Fri, 13 Sep 2024 08:57:09 +0000 Received: by www.linux-watchdog.org (Postfix, from userid 500) id AC2DA40A91; Fri, 13 Sep 2024 10:32:48 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 www.linux-watchdog.org AC2DA40A91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-watchdog.org; s=odk20180602; t=1726216368; bh=L2M5SuCNmipfKphPitsBa/R/HP6VsGtSLkdrj9Qb54g=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=CZkLeRj5I+JHFdgwKfx2xPu0TUcICC6Av4mvTd0hJS56DR4LQWZMDzck27P7/+7TE oL/n53T+wnOTPEfQ0Gt9rSxVBT9bHZzKLkFdQIRLBycCNkEnStRz39DHIQcOm47x/W GhFrM0id0Rz/bzNH1cstMK0zvOjjZJnjsGa+kqTk= Date: Fri, 13 Sep 2024 10:32:48 +0200 From: Wim Van Sebroeck To: Frank Li Cc: Wim Van Sebroeck , alice.guo@nxp.com, festevam@gmail.com, imx@lists.linux.dev, kernel@pengutronix.de, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-watchdog@vger.kernel.org, linux@roeck-us.net, s.hauer@pengutronix.de, shawnguo@kernel.org, ye.li@nxp.com Subject: Re: [PATCH v5 1/1] watchdog: imx7ulp_wdt: move post_rcs_wait into struct imx_wdt_hw_feature Message-ID: <20240913083248.GB31440@www.linux-watchdog.org> References: <20240730145610.2177627-1-Frank.Li@nxp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-12-10) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240913_015707_967614_5E93E2C9 X-CRM114-Status: GOOD ( 10.61 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Frank, > On Thu, Aug 29, 2024 at 06:00:51PM -0400, Frank Li wrote: > > On Tue, Jul 30, 2024 at 10:56:10AM -0400, Frank Li wrote: > > > Move post_rcs_wait into struct imx_wdt_hw_feature to simple code logic for > > > difference compatible string. > > > > > > i.MX93 watchdog needn't wait 2.5 clocks after RCS is done. So needn't set > > > post_rcs_wait. > > > > > > Reviewed-by: Guenter Roeck > > > Signed-off-by: Alice Guo > > > Reviewed-by: Ye Li > > > Signed-off-by: Frank Li > > > --- > > Wim Van Sebroeck: > > Could you please take care this patch? > It's in Linux-watchdog-next since tuesday. Kind regards, Wim.