Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment