Commit 91ed9a7c authored by Nicolas Del Piano's avatar Nicolas Del Piano Committed by Greg Kroah-Hartman
Browse files

Staging: vt6655: tether: fixed a brace coding style issue



Fixed a coding style issue.

Signed-off-by: default avatarNicolas Del Piano <ndel314@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a99698fa
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -98,8 +98,8 @@ bool ETHbIsBufferCrc32Ok(unsigned char *pbyBuffer, unsigned int cbFrameLength)
	unsigned long dwCRC;

	dwCRC = CRCdwGetCrc32(pbyBuffer, cbFrameLength - 4);
	if (cpu_to_le32(*((unsigned long *)(pbyBuffer + cbFrameLength - 4))) != dwCRC) {
	if (cpu_to_le32(*((unsigned long *)(pbyBuffer + cbFrameLength - 4))) != dwCRC)
		return false;
	}

	return true;
}