From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pd0-x229.google.com ([2607:f8b0:400e:c02::229]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Ycl1Z-0000JE-M7 for linux-mtd@lists.infradead.org; Tue, 31 Mar 2015 01:31:26 +0000 Received: by pdbni2 with SMTP id ni2so3595624pdb.1 for ; Mon, 30 Mar 2015 18:31:03 -0700 (PDT) Date: Mon, 30 Mar 2015 18:30:58 -0700 From: Brian Norris To: Nicholas Mc Guire Subject: Re: [PATCH] mtd: pxa3xx_nand: cleanup wait_for_completion handling Message-ID: <20150331013058.GQ32500@ld-irv-0074> References: <1422809737-3991-1-git-send-email-hofrat@osadl.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1422809737-3991-1-git-send-email-hofrat@osadl.org> Cc: linux-mtd@lists.infradead.org, David Woodhouse , linux-kernel@vger.kernel.org, Ezequiel Garcia List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Sun, Feb 01, 2015 at 11:55:37AM -0500, Nicholas Mc Guire wrote: > return type of wait_for_completion_timeout is unsigned long not int, this > patch uses the return value of wait_for_completion_timeout in the condition > directly rather than assigning it to an incorrect type variable. > > The timeout declaration cleanup is just for readability > > Signed-off-by: Nicholas Mc Guire > --- > > The variable used for handling the return of wait_for_cmpletion_timeout > was int but should be unsigned long, where it was not in use for anything > else and the return value in case of completion (>0) is not used it was > removed and wait_for_completion_timeout() used directly in the if condition. > > To make the timeout values a bit simpler to read and also handle all of > the corner cases correctly the declarations are moved to msecs_to_jiffies(). > > This patch was only compile tested for pxa3xx_defconfig > (implies CONFIG_MTD_NAND_PXA3xx=y) > > Patch is against 3.0.19-rc6 -next-20150130 Reworked the commit message a bit and pushed to l2-mtd.git. Brian