Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6dde1c6c authored by Daniel Kenji Toyama's avatar Daniel Kenji Toyama Committed by Greg Kroah-Hartman
Browse files

Staging: vt6656: tcrc.c: Fixed coding style issues



Fixed minor problems with indentation.

Signed-off-by: default avatarDaniel Kenji Toyama <kenji.toyama@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b77694be
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@

/*---------------------  Static Variables  --------------------------*/

// 32-bit CRC table
/* 32-bit CRC table */
static const DWORD s_adwCrc32Table[256] = {
    0x00000000L, 0x77073096L, 0xEE0E612CL, 0x990951BAL,
    0x076DC419L, 0x706AF48FL, 0xE963A535L, 0x9E6495A3L,
@@ -138,7 +138,8 @@ DWORD CRCdwCrc32 (PBYTE pbyData, UINT cbByte, DWORD dwCrcSeed)

	dwCrc = dwCrcSeed;
	while (cbByte--) {
        dwCrc = s_adwCrc32Table[(BYTE)((dwCrc ^ (*pbyData)) & 0xFF)] ^ (dwCrc >> 8);
		dwCrc = s_adwCrc32Table[(BYTE)((dwCrc ^ (*pbyData)) & 0xFF)] ^
			(dwCrc >> 8);
		pbyData++;
	}