From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45438) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4OI7-0007cL-Ii for qemu-devel@nongnu.org; Sun, 04 Mar 2012 22:08:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S4OI5-00044w-Ti for qemu-devel@nongnu.org; Sun, 04 Mar 2012 22:08:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:51156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S4OI5-000428-Lv for qemu-devel@nongnu.org; Sun, 04 Mar 2012 22:08:49 -0500 From: Jason Wang Date: Mon, 05 Mar 2012 11:08:33 +0800 Message-ID: <20120305030833.8515.22042.stgit@jason-ThinkPad-T400> In-Reply-To: <20120305030824.8515.53602.stgit@jason-ThinkPad-T400> References: <20120305030824.8515.53602.stgit@jason-ThinkPad-T400> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 2/6] rtl8139: remove unused marco List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com, stefanha@linux.vnet.ibm.com, mst@redhat.com, qemu-devel@nongnu.org, benjamin.poirier@gmail.com, aurelien@aurel32.net Signed-off-by: Jason Wang --- hw/rtl8139.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/hw/rtl8139.c b/hw/rtl8139.c index d9e742c..ca613ae 100644 --- a/hw/rtl8139.c +++ b/hw/rtl8139.c @@ -65,9 +65,6 @@ #define PCI_FREQUENCY 33000000L -/* debug RTL8139 card C+ mode only */ -//#define DEBUG_RTL8139CP 1 - #define SET_MASKED(input, mask, curr) \ ( ( (input) & ~(mask) ) | ( (curr) & (mask) ) )