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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9046CECAAD3 for ; Sat, 17 Sep 2022 12:38:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229527AbiIQMiJ (ORCPT ); Sat, 17 Sep 2022 08:38:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37058 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229436AbiIQMiI (ORCPT ); Sat, 17 Sep 2022 08:38:08 -0400 Received: from fudo.makrotopia.org (fudo.makrotopia.org [IPv6:2a07:2ec0:3002::71]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 491632C658 for ; Sat, 17 Sep 2022 05:38:07 -0700 (PDT) Received: from local by fudo.makrotopia.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.96) (envelope-from ) id 1oZX56-0001bW-2x; Sat, 17 Sep 2022 14:38:01 +0200 Date: Sat, 17 Sep 2022 13:37:58 +0100 From: Daniel Golle To: Stanislaw Gruszka Cc: linux-wireless@vger.kernel.org, Helmut Schaa , Kalle Valo , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Johannes Berg Subject: Re: [PATCH 04/15] rt2x00: add RF self TXDC calibration for MT7620 Message-ID: References: <20220917123440.GC17901@wp.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220917123440.GC17901@wp.pl> Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On Sat, Sep 17, 2022 at 02:34:40PM +0200, Stanislaw Gruszka wrote: > On Sat, Sep 17, 2022 at 12:05:27AM +0100, Daniel Golle wrote: > > From: Tomislav Požega > > > > Add TX self calibration based on mtk driver. > > > > Signed-off-by: Tomislav Požega > > Daniel, this needs your Signed-off-by, > > Acked-by: Stanislaw Gruszka > > > + rt2800_rfcsr_write_bank(rt2x00dev, 5, 1, 0x4); > > + for (i = 0; i < 100; i = i + 1) { > > Why not i++ ? :-) or even ++i. I'll fix that in v2.