Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1376 → Rev 1377

/kernel/branches/net/drivers/RTL8139.asm
302,7 → 302,7
proc service_proc stdcall, ioctl:dword
 
mov edx, [ioctl]
mov eax, [ebx+IOCTL.io_code]
mov eax, [edx+IOCTL.io_code]
 
;------------------------------------------------------
 
/kernel/branches/net/drivers/pcnet32.asm
470,7 → 470,7
proc service_proc stdcall, ioctl:dword
 
mov edx, [ioctl]
mov eax, [ebx+IOCTL.io_code]
mov eax, [edx+IOCTL.io_code]
 
;------------------------------------------------------
 
/kernel/branches/net/drivers/sis900.asm
133,7 → 133,7
; pointer to IOCTL structure.
mov edx, [esp+4] ; edx -> IOCTL
; 2. Get request code and select a handler for the code.
mov eax, [ebx+IOCTL.io_code]
mov eax, [edx+IOCTL.io_code]
test eax, eax ; check for SRV_GETVERSION
jnz @f
; 3. This is SRV_GETVERSION request, no input, 4 bytes output, API_VERSION.