From c048a59ae780b94c9c85d77908a1335ac49da610 Mon Sep 17 00:00:00 2001 From: hidnplayr Date: Fri, 7 Jun 2013 18:33:19 +0000 Subject: [PATCH] Disable some debugging output for RTL8029 driver. git-svn-id: svn://kolibrios.org@3619 a494cfbc-eb01-0410-851d-a64ba20cac60 --- drivers/ethernet/RTL8029.asm | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/drivers/ethernet/RTL8029.asm b/drivers/ethernet/RTL8029.asm index e52b9650da..47d808078d 100644 --- a/drivers/ethernet/RTL8029.asm +++ b/drivers/ethernet/RTL8029.asm @@ -210,7 +210,7 @@ proc service_proc stdcall, ioctl:dword cmp eax, 1 ;SRV_HOOK jne @F ;--------- - DEBUGF 2,"Checking if device is already listed..\n" + DEBUGF 1,"Checking if device is already listed..\n" mov eax, [IOCTL.input] @@ -656,7 +656,7 @@ reset: ; Indicate that we have successfully reset the card xor eax, eax - DEBUGF 2,"Done!\n" + DEBUGF 1,"Done!\n" ret @@ -673,8 +673,8 @@ transmit: mov esi, [esp + 4] mov ecx, [esp + 8] - DEBUGF 2,"Transmitting packet, buffer:%x, size:%u\n",esi, ecx - DEBUGF 2,"To: %x-%x-%x-%x-%x-%x From: %x-%x-%x-%x-%x-%x Type:%x%x\n",\ + DEBUGF 1,"Transmitting packet, buffer:%x, size:%u\n",esi, ecx + DEBUGF 1,"To: %x-%x-%x-%x-%x-%x From: %x-%x-%x-%x-%x-%x Type:%x%x\n",\ [esi+0]:2,[esi+1]:2,[esi+2]:2,[esi+3]:2,[esi+4]:2,[esi+5]:2,[esi+6]:2,[esi+7]:2,[esi+8]:2,[esi+9]:2,[esi+10]:2,[esi+11]:2,[esi+13]:2,[esi+12]:2 cmp ecx, ETH_FRAME_LEN @@ -709,7 +709,7 @@ transmit: mov al, CMD_PS0 + CMD_TXP + CMD_RD2 + CMD_STA out dx, al - DEBUGF 2," - Packet Sent!\n" + DEBUGF 1,"Packet Sent!\n" inc [device.packets_tx] mov eax, [esp + 8] ; Get packet size in eax @@ -721,8 +721,8 @@ transmit: xor eax, eax ret 8 -.err: - DEBUGF 2," - Error!\n" + .err: + DEBUGF 2,"Transmit error!\n" or eax, -1 stdcall KernelFree, [esp+4] @@ -860,7 +860,7 @@ int_handler: ; update stats - DEBUGF 2,"Received %u bytes\n", ecx + DEBUGF 1,"Received %u bytes\n", ecx add dword[device.bytes_rx], ecx adc dword[device.bytes_rx + 4], 0 @@ -879,8 +879,6 @@ int_handler: cmp ecx, eax ; eax = number of bytes till end of buffer, ecx = bytes we need to read jbe .no_wrap - DEBUGF 2,"WRAP!\n" - ; Read first part sub ecx, eax @@ -929,7 +927,7 @@ int_handler: .no_rx: pop ebx - DEBUGF 2,"done\n" + DEBUGF 1,"done\n" set_io 0 set_io P0_ISR