Browse Source

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>
Jiong Du 9 years ago
parent
commit
c4b370efc7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      drivers/staging/ks7010/michael_mic.c

+ 2 - 0
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;