From patchwork Thu Jun 18 13:49:49 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Westphal X-Patchwork-Id: 28865 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@bilbo.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ozlabs.org (ozlabs.org [203.10.76.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.ozlabs.org", Issuer "CA Cert Signing Authority" (verified OK)) by bilbo.ozlabs.org (Postfix) with ESMTPS id E3034B7154 for ; Thu, 18 Jun 2009 23:50:01 +1000 (EST) Received: by ozlabs.org (Postfix) id D3994DDD1B; Thu, 18 Jun 2009 23:50:01 +1000 (EST) Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 564D4DDDA1 for ; Thu, 18 Jun 2009 23:50:00 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758169AbZFRNts (ORCPT ); Thu, 18 Jun 2009 09:49:48 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757328AbZFRNtr (ORCPT ); Thu, 18 Jun 2009 09:49:47 -0400 Received: from Chamillionaire.breakpoint.cc ([85.10.199.196]:53472 "EHLO Chamillionaire.breakpoint.cc" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755869AbZFRNtr (ORCPT ); Thu, 18 Jun 2009 09:49:47 -0400 Received: id: fw by Chamillionaire.breakpoint.cc authenticated by fw with local (easymta 1.00 BETA 1) id 1MHHzx-0002Dm-2q; Thu, 18 Jun 2009 15:49:49 +0200 From: Florian Westphal To: netdev@vger.kernel.org Cc: Florian Westphal Subject: [PATCH] r8169: remove unused variable Date: Thu, 18 Jun 2009 15:49:49 +0200 Message-Id: <1245332989-26685-1-git-send-email-fw@strlen.de> X-Mailer: git-send-email 1.6.0.6 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org all references got removed by 865c652d6be9929927cabdc54b137b7541eb6612 (r8169: remove non-napi code). Signed-off-by: Florian Westphal --- drivers/net/r8169.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index 4e22462..4b53b58 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c @@ -51,9 +51,6 @@ #define TX_BUFFS_AVAIL(tp) \ (tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1) -/* Maximum events (Rx packets, etc.) to handle at each interrupt. */ -static const int max_interrupt_work = 20; - /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast). The RTL chips use a 64 element hash table based on the Ethernet CRC. */ static const int multicast_filter_limit = 32;