Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752217AbbBJHTL (ORCPT ); Tue, 10 Feb 2015 02:19:11 -0500 Received: from mga02.intel.com ([134.134.136.20]:14369 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751986AbbBJHTJ (ORCPT ); Tue, 10 Feb 2015 02:19:09 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,548,1418112000"; d="scan'208";a="664131075" Message-ID: <54D9B0E8.7000000@linux.intel.com> Date: Tue, 10 Feb 2015 09:19:04 +0200 From: Jarkko Nikula User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.4.0 MIME-Version: 1.0 To: Nicholas Mc Guire , Wolfram Sang CC: Mika Westerberg , Jisheng Zhang , Du Wenkai , Shinya Kuribayashi , Romain Baeriswyl , Andrew Jackson , David Box , linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] i2c-designware: fixup of wait_for_completion_timeout return handling References: <1423499739-9423-1-git-send-email-hofrat@osadl.org> In-Reply-To: <1423499739-9423-1-git-send-email-hofrat@osadl.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1947 Lines: 53 Hi On 02/09/2015 06:35 PM, Nicholas Mc Guire wrote: > return type of wait_for_completion_timeout is unsigned long not int. > An appropriate return variable is introduced and assignment fixed up. > > Signed-off-by: Nicholas Mc Guire > --- > > Patch was compile tested with x86_64_defconfig + > CONFIG_X86_AMD_PLATFORM_DEVICE=y, CONFIG_I2C_DESIGNWARE_PLATFORM=m > (implies CONFIG_I2C_DESIGNWARE_CORE=y) > > Patch is against 3.19.0-rc7 (localversion-next is -next-20150209) > > drivers/i2c/busses/i2c-designware-core.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c > index 6e25c01..05934e0 100644 > --- a/drivers/i2c/busses/i2c-designware-core.c > +++ b/drivers/i2c/busses/i2c-designware-core.c > @@ -623,6 +623,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) > { > struct dw_i2c_dev *dev = i2c_get_adapdata(adap); > int ret; > + unsigned int timeout; > Not unsigned long. > @@ -656,8 +657,8 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) > i2c_dw_xfer_init(dev); > > /* wait for tx to complete */ > - ret = wait_for_completion_timeout(&dev->cmd_complete, HZ); > - if (ret == 0) { > + timeout = wait_for_completion_timeout(&dev->cmd_complete, HZ); > + if (timeout == 0) { > dev_err(dev->dev, "controller timed out\n"); > /* i2c_dw_init implicitly disables the adapter */ > i2c_dw_init(dev); > I'd say better to test directly with "if (!wait_for_completion_timeout())" since remaining jiffies or potential error code from wait_for_completion_timeout() is not used here. -- Jarkko -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/