Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758633AbYHBSzw (ORCPT ); Sat, 2 Aug 2008 14:55:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754286AbYHBSzS (ORCPT ); Sat, 2 Aug 2008 14:55:18 -0400 Received: from argonath.las.ic.unicamp.br ([143.106.60.116]:36303 "EHLO mail.las.ic.unicamp.br" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753435AbYHBSzP (ORCPT ); Sat, 2 Aug 2008 14:55:15 -0400 From: "Gustavo F. Padovan" To: p_gortmaker@yahoo.com Cc: davem@davemloft.net, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/3] drivers/net: Remove 'return' of void function NS8390p_init() Date: Sat, 2 Aug 2008 15:55:11 -0300 Message-Id: <1217703313-23407-2-git-send-email-gustavo@las.ic.unicamp.br> X-Mailer: git-send-email 1.5.4.5 In-Reply-To: <1217703313-23407-1-git-send-email-gustavo@las.ic.unicamp.br> References: <1217703313-23407-1-git-send-email-gustavo@las.ic.unicamp.br> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 809 Lines: 28 We don't need this into a void function. Signed-off-by: Gustavo F. Padovan --- drivers/net/8390p.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/8390p.c b/drivers/net/8390p.c index 71f1988..fd46f6c 100644 --- a/drivers/net/8390p.c +++ b/drivers/net/8390p.c @@ -39,7 +39,7 @@ struct net_device *__alloc_eip_netdev(int size) void NS8390p_init(struct net_device *dev, int startp) { - return __NS8390_init(dev, startp); + __NS8390_init(dev, startp); } EXPORT_SYMBOL(eip_open); -- 1.5.4.5 -- 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/