Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752957AbbBSKLl (ORCPT ); Thu, 19 Feb 2015 05:11:41 -0500 Received: from outbound-smtp06.blacknight.com ([81.17.249.39]:54333 "EHLO outbound-smtp06.blacknight.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752828AbbBSKLi (ORCPT ); Thu, 19 Feb 2015 05:11:38 -0500 Message-ID: <54E5B6D6.6000308@nexus-software.ie> Date: Thu, 19 Feb 2015 10:11:34 +0000 From: "Bryan O'Donoghue" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: kbuild test robot CC: kbuild-all@01.org, Ingo Molnar , Thomas Gleixner , "H. Peter Anvin" , x86@kernel.org, Andy Shevchenko , "Ong, Boon Leong" , Darren Hart , linux-kernel@vger.kernel.org Subject: Re: [PATCH] x86/intel/quark: fix simple_return.cocci warnings References: <201502191606.pTcFEBOs%fengguang.wu@intel.com> <20150219081432.GA21996@waimea> In-Reply-To: <20150219081432.GA21996@waimea> 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: 1236 Lines: 39 On 19/02/15 08:14, kbuild test robot wrote: > arch/x86/platform/intel-quark/imr.c:129:1-4: WARNING: end returns can be simpified > > Simplify a trivial if-return sequence. Possibly combine with a > preceding function call. > Generated by: scripts/coccinelle/misc/simple_return.cocci > > CC: Bryan O'Donoghue > Signed-off-by: Fengguang Wu > --- > > imr.c | 6 +----- > 1 file changed, 1 insertion(+), 5 deletions(-) > > --- a/arch/x86/platform/intel-quark/imr.c > +++ b/arch/x86/platform/intel-quark/imr.c > @@ -126,12 +126,8 @@ static int imr_read(struct imr_device *i > if (ret) > return ret; > > - ret = iosf_mbi_read(QRK_MBI_UNIT_MM, QRK_MBI_MM_READ, > + return iosf_mbi_read(QRK_MBI_UNIT_MM, QRK_MBI_MM_READ, > reg++, &imr->wmask); > - if (ret) > - return ret; > - > - return 0; > } > > /** > This flow was a change asked for and supplied in review feedback for Andy Shevchenko so NAK to this patch. -- 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/