From b7dceb350b97afb871a87e139dea0ddb34e86955 Mon Sep 17 00:00:00 2001 From: hidnplayr Date: Tue, 28 May 2013 19:33:16 +0000 Subject: [PATCH] disable unneeded debug output in pcnet driver git-svn-id: svn://kolibrios.org@3557 a494cfbc-eb01-0410-851d-a64ba20cac60 --- drivers/ethernet/pcnet32.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/ethernet/pcnet32.asm b/drivers/ethernet/pcnet32.asm index 4ce47c743e..88c0f1cbac 100644 --- a/drivers/ethernet/pcnet32.asm +++ b/drivers/ethernet/pcnet32.asm @@ -371,7 +371,7 @@ proc START stdcall, state:dword .entry: - DEBUGF 1,"Loading %s driver\n", my_service + DEBUGF 2,"Loading %s driver\n", my_service stdcall RegService, my_service, service_proc ret @@ -1039,7 +1039,7 @@ transmit: ; get next descriptor 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, ... inc [device.cur_tx] and [device.cur_tx], TX_RING_SIZE - 1 - DEBUGF 2," - Packet Sent! " + DEBUGF 1," - Packet Sent! " ; Update stats inc [device.packets_tx] @@ -1048,7 +1048,7 @@ transmit: adc dword [device.bytes_tx + 4], 0 .finish: - DEBUGF 2," - Done!\n" + DEBUGF 1," - Done!\n" xor eax, eax ret 8