This cleans up the brace placement coding issues.
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/staging/csr/data_tx.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/csr/data_tx.c b/drivers/staging/csr/data_tx.c
index d2c2954..878f59f 100644
--- a/drivers/staging/csr/data_tx.c
+++ b/drivers/staging/csr/data_tx.c
@@ -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 */
@@ -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;
}
}
--
1.8.0.rc0.18.gf84667d
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel