diff options
| author | Jiong Du <jiongdu0.0@gmail.com> | 2016-10-25 14:40:50 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-10-27 16:19:37 +0300 |
| commit | c4b370efc7fba6a489eda2cafd41109acbce81fb (patch) | |
| tree | 92dc25ced3e4b1110d31d13871826a65eb10698e | |
| parent | 091a3d58f099e0918964d577e647fef41f1efa7b (diff) | |
| download | linux-c4b370efc7fba6a489eda2cafd41109acbce81fb.tar.xz | |
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>
| -rw-r--r-- | drivers/staging/ks7010/michael_mic.c | 2 |
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; |
