From patchwork Wed Sep 23 18:16:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guillaume Gomez X-Patchwork-Id: 521809 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 4C01114018C for ; Thu, 24 Sep 2015 04:16:33 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=TZUpKzRL; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754431AbbIWSQR (ORCPT ); Wed, 23 Sep 2015 14:16:17 -0400 Received: from mail-wi0-f181.google.com ([209.85.212.181]:33794 "EHLO mail-wi0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754354AbbIWSQP (ORCPT ); Wed, 23 Sep 2015 14:16:15 -0400 Received: by wicfx3 with SMTP id fx3so251023896wic.1; Wed, 23 Sep 2015 11:16:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=HHltQsXw8aVaUmFq9/tixFVhmY9LTBS6Gvnl417pDSY=; b=TZUpKzRLCmuNu+UX76hEj4r+YdN+X0Nv38mUvki93WR4sBYOOvMwTw4PQzPzWTA9eM d99etg4OBuf1yKMdHxyu8b9xTt/1FJFpy+4S6fcJiiV9effTPvjaqcWCQ/yY84gVYaNz ZAwDnDt4Blj8sVYnu312J2yl72waszdbkbgRZJRbnA75FAjK90OV1JW037JgpLYzvZZJ XB29GznNUCwh6CSSnYMkxtfX/jUucrT+HInEdWfrsT1Wk7T12zFZebqF/KFWvZL0AuYU 8Jd6NvjA5XYXR2sLw7dnE0g8QZl4azmv4rNlwvAuUfRni7KDSrNHfjGPjss4Yi3qpzsQ lMow== X-Received: by 10.194.59.236 with SMTP id c12mr37339225wjr.23.1443032173914; Wed, 23 Sep 2015 11:16:13 -0700 (PDT) Received: from localhost.localdomain (alf94-h02-128-78-219-50.dsl.sta.abo.bbox.fr. [128.78.219.50]) by smtp.gmail.com with ESMTPSA id fs2sm9778596wib.12.2015.09.23.11.16.11 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 23 Sep 2015 11:16:13 -0700 (PDT) From: guillaume1.gomez@gmail.com To: guillaume1.gomez@gmail.com, davem@davemloft.net, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/1] net: Remove unneeded return from void function Date: Wed, 23 Sep 2015 20:16:00 +0200 Message-Id: <1443032160-3164-1-git-send-email-guillaume1.gomez@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Guillaume Gomez 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); */ static inline void napi_complete(struct napi_struct *n) { - return napi_complete_done(n, 0); + napi_complete_done(n, 0); } /**