From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755027AbbIWOPy (ORCPT ); Wed, 23 Sep 2015 10:15:54 -0400 Received: from mail-la0-f52.google.com ([209.85.215.52]:36772 "EHLO mail-la0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751908AbbIWOPw (ORCPT ); Wed, 23 Sep 2015 10:15:52 -0400 Subject: Re: [PATCH] net: Remove unneeded return from void function To: Guillaume Gomez , netdev@vger.kernel.org, linux-kernel@vger.kernel.org References: From: Sergei Shtylyov Message-ID: <5602B412.50506@cogentembedded.com> Date: Wed, 23 Sep 2015 17:15:46 +0300 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 9/23/2015 1:31 PM, Guillaume Gomez wrote: > Signed-off-by: Guillaume Gomez > --- > include/linux/netdevice.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h > index 88a0069..4a444a1 100644 > --- a/include/linux/netdevice.h > +++ b/include/linux/netdevice.h > @@ -457,7 +457,7 @@ void napi_complete_done(struct napi_struct *n, int > work_done); The patch is line-wrapped. > */ > static inline void napi_complete(struct napi_struct *n) > { > - return napi_complete_done(n, 0); > + napi_complete_done(n, 0); And tabs were converted to spaces. MBR, Sergei