From patchwork Wed May 22 23:57:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Emilio_L=C3=B3pez?= X-Patchwork-Id: 245783 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 9489E2C0040 for ; Thu, 23 May 2013 10:00:45 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755601Ab3EWAAW (ORCPT ); Wed, 22 May 2013 20:00:22 -0400 Received: from zetta.elopez.com.ar ([199.30.59.35]:36655 "EHLO zetta.elopez.com.ar" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754052Ab3EWAAV (ORCPT ); Wed, 22 May 2013 20:00:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=elopez.com.ar; s=mail; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=dE3sAJo+lYq1xlG3eeoKJYh2i6CHbVKOGNz4iPBatWk=; b=Bp/zbYxlwO74b+IX3xP3t1BnWZqhkgNJJaFyhDPsxiHw0ux9N1tgrlr6BWZqUFWt64M84y3U44tZFYjyoVs0roedDMni0SrORalJdi8ws/M++TxvrXleD+jK03WpOD/9caC8QoQCZnTdQCrUIhcofLR3HPN/pF3wTuzQ1RA53uOYbDhKYDjYdytYOjXuXiU9xSr8p0TytXAFAIi8Lkwv4rENR8h9xgbbxxBOqO3cGw6KIh3nQzUw0y0qLpjYZCBKTmQbjJT7j+XYF0TOYCseol0V7iB1EwhPoycyTb8Aaiwa/S+IidvyoPfSSqnP3KbtaEUN5qNFK5Qdut4Pbmpl3g==; Received: from [181.164.109.61] (helo=desktop.lan) by zetta.elopez.com.ar with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.80) id 1UfIx4-0008S9-EM; Wed, 22 May 2013 21:00:14 -0300 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= To: sfr@canb.auug.org.au, davem@davemloft.net Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, =?UTF-8?q?Emilio=20L=C3=B3pez?= Subject: [PATCH 1/3] net: ethernet: apple: drop unused variable Date: Wed, 22 May 2013 20:57:35 -0300 Message-Id: <1369267057-9371-1-git-send-email-emilio@elopez.com.ar> X-Mailer: git-send-email 1.8.2.3 In-Reply-To: <20130522.122624.266893118412034519.davem@davemloft.net> References: <20130522.122624.266893118412034519.davem@davemloft.net> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Commit 3b0aaef ("net: ethernet: apple: initialize variables directly") dropped the only loop that was using i but did not remove the actual variable, therefore causing a warning when building. This patch drops the now redundant line. Signed-off-by: Emilio López --- drivers/net/ethernet/apple/bmac.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/ethernet/apple/bmac.c b/drivers/net/ethernet/apple/bmac.c index 714dcfe..a597b76 100644 --- a/drivers/net/ethernet/apple/bmac.c +++ b/drivers/net/ethernet/apple/bmac.c @@ -1016,7 +1016,6 @@ static void bmac_set_multicast(struct net_device *dev) static void bmac_set_multicast(struct net_device *dev) { struct netdev_hw_addr *ha; - int i; unsigned short rx_cfg; u32 crc;