summaryrefslogtreecommitdiff
path: root/drivers/staging/ks7010/michael_mic.c
diff options
context:
space:
mode:
authorJiong Du <jiongdu0.0@gmail.com>2016-10-25 19:40:50 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-10-27 15:19:37 +0200
commitc4b370efc7fba6a489eda2cafd41109acbce81fb (patch)
tree92dc25ced3e4b1110d31d13871826a65eb10698e /drivers/staging/ks7010/michael_mic.c
parent091a3d58f099e0918964d577e647fef41f1efa7b (diff)
staging: ks7010: add a blank line after declarations
Fixes checkpatch warning: Missing a blank line after declarations Signed-off-by: Jiong Du <jiongdu0.0@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ks7010/michael_mic.c')
-rw-r--r--drivers/staging/ks7010/michael_mic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/ks7010/michael_mic.c b/drivers/staging/ks7010/michael_mic.c
index 5f3c1496db94..f1064c1f6056 100644
--- a/drivers/staging/ks7010/michael_mic.c
+++ b/drivers/staging/ks7010/michael_mic.c
@@ -64,6 +64,7 @@ static
void MichaelAppend(struct michel_mic_t *Mic, uint8_t *src, int nBytes)
{
int addlen;
+
if (Mic->nBytesInM) {
addlen = 4 - Mic->nBytesInM;
if (addlen > nBytes)
@@ -98,6 +99,7 @@ static
void MichaelGetMIC(struct michel_mic_t *Mic, uint8_t *dst)
{
uint8_t *data = Mic->M;
+
switch (Mic->nBytesInM) {
case 0:
Mic->L ^= 0x5a;