Skip to content

Commit

Permalink
Staging: csr: data_tx: fix up brace placement
Browse files Browse the repository at this point in the history
This cleans up the brace placement coding issues.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed Oct 22, 2012
1 parent 7c5745c commit dbff11c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions drivers/staging/csr/data_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ uf_verify_m4(unifi_priv_t *priv, const unsigned char *packet, unsigned int lengt
u16 keyinfo;


if (length < (4 + 5 + 8 + 32 + 16 + 8 + 8 + 16 + 1 + 8)) {
if (length < (4 + 5 + 8 + 32 + 16 + 8 + 8 + 16 + 1 + 8))
return 1;
}

p += 8;
keyinfo = p[5] << 8 | p[6]; /* big-endian */
Expand All @@ -40,9 +39,7 @@ uf_verify_m4(unifi_priv_t *priv, const unsigned char *packet, unsigned int lengt
) {
unifi_trace(priv, UDBG1, "uf_verify_m4: M4 detected \n");
return 0;
}
else
{
} else {
return 1;
}
}
Expand Down

0 comments on commit dbff11c

Please sign in to comment.