X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Fdrvutil.c;fp=KernelLand%2FKernel%2Fdrvutil.c;h=d9bd92df14811b7764324f44bdd9389b31749a35;hb=1d65dd9606edfcaeef8dfff3724ef6c49180b131;hp=d19a050464806f72a58eb638a90e04a509d3893c;hpb=3d9c87713549b06c4505b15f37ef8e9785d0ab0d;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/drvutil.c b/KernelLand/Kernel/drvutil.c index d19a0504..d9bd92df 100644 --- a/KernelLand/Kernel/drvutil.c +++ b/KernelLand/Kernel/drvutil.c @@ -556,7 +556,7 @@ void DrvUtil_Video_2D_Blit(void *Ent, Uint16 DstX, Uint16 DstY, Uint16 SrcX, Uin // --- Disk Driver Helpers --- Uint64 DrvUtil_ReadBlock(Uint64 Start, Uint64 Length, void *Buffer, - tDrvUtil_Read_Callback ReadBlocks, Uint64 BlockSize, Uint Argument) + tDrvUtil_Read_Callback ReadBlocks, Uint64 BlockSize, void *Argument) { Uint8 tmp[BlockSize]; // C99 Uint64 block = Start / BlockSize; @@ -566,7 +566,7 @@ Uint64 DrvUtil_ReadBlock(Uint64 Start, Uint64 Length, void *Buffer, int tailings; Uint64 ret; - ENTER("XStart XLength pBuffer pReadBlocks XBlockSize xArgument", + ENTER("XStart XLength pBuffer pReadBlocks XBlockSize pArgument", Start, Length, Buffer, ReadBlocks, BlockSize, Argument); // Non aligned start, let's fix that! @@ -627,7 +627,7 @@ Uint64 DrvUtil_ReadBlock(Uint64 Start, Uint64 Length, void *Buffer, Uint64 DrvUtil_WriteBlock(Uint64 Start, Uint64 Length, const void *Buffer, tDrvUtil_Read_Callback ReadBlocks, tDrvUtil_Write_Callback WriteBlocks, - Uint64 BlockSize, Uint Argument) + Uint64 BlockSize, void *Argument) { Uint8 tmp[BlockSize]; // C99 Uint64 block = Start / BlockSize; @@ -637,7 +637,7 @@ Uint64 DrvUtil_WriteBlock(Uint64 Start, Uint64 Length, const void *Buffer, int tailings; Uint64 ret; - ENTER("XStart XLength pBuffer pReadBlocks pWriteBlocks XBlockSize xArgument", + ENTER("XStart XLength pBuffer pReadBlocks pWriteBlocks XBlockSize pArgument", Start, Length, Buffer, ReadBlocks, WriteBlocks, BlockSize, Argument); // Non aligned start, let's fix that!