From patchwork Thu Aug 19 07:35:09 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kuninori Morimoto X-Patchwork-Id: 62113 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 F064AB70D8 for ; Thu, 19 Aug 2010 17:35:55 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751525Ab0HSHfv (ORCPT ); Thu, 19 Aug 2010 03:35:51 -0400 Received: from mail.renesas.com ([202.234.163.13]:41638 "EHLO mail07.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751397Ab0HSHft (ORCPT ); Thu, 19 Aug 2010 03:35:49 -0400 X-AuditID: ac14038b-0000000800000202-42-4c6cdead2bd2 Received: from guardian04.idc.renesas.com ([172.20.8.206]) by mail07.idc.renesas.com (sendmail) with ESMTP id o7J7Z9Rk028267; Thu, 19 Aug 2010 16:35:09 +0900 (JST) Received: (from root@localhost) by guardian04.idc.renesas.com with id o7J7Z9W4011091; Thu, 19 Aug 2010 16:35:09 +0900 (JST) Received: from mta02.idc.renesas.com (localhost [127.0.0.1]) by mta02.idc.renesas.com with ESMTP id o7J7ZBEQ021953; Thu, 19 Aug 2010 16:35:11 +0900 (JST) Received: from PG10870.renesas.com ([172.30.8.159]) by ims05.idc.renesas.com (Sendmail) with ESMTPA id <0L7E00C0C2ELFB@ims05.idc.renesas.com>; Thu, 19 Aug 2010 16:35:09 +0900 (JST) Date: Thu, 19 Aug 2010 16:35:09 +0900 (JST) Date-warning: Date header was inserted by ims05.idc.renesas.com From: Kuninori Morimoto Subject: [PATCH] net: sh_eth: remove unused variable To: Linux-Net Cc: Samuel Ortiz , "David S. Miller" , shimoda (RSO) Message-id: MIME-version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-type: text/plain; charset=US-ASCII User-Agent: SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (=?ISO-2022-JP-2?B?U2Fuag==?= =?ISO-2022-JP-2?B?GyQoRCtXGyhC?=) APEL/10.6 Emacs/23.2 (i386-mingw-nt5.1.2600) MULE/6.0 (HANACHIRUSATO) X-Brightmail-Tracker: AAAAAA== Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Kuninori Morimoto --- drivers/net/sh_eth.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index f5a9eb1..79fd02b 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c @@ -1437,7 +1437,7 @@ static const struct net_device_ops sh_eth_netdev_ops = { static int sh_eth_drv_probe(struct platform_device *pdev) { - int ret, i, devno = 0; + int ret, devno = 0; struct resource *res; struct net_device *ndev = NULL; struct sh_eth_private *mdp;