Browse Source

staging: keucr: Fix warning about missing blank lines after declarations

This patches fixes two warnings of checkpatch.pl, both of the type
WARNING: Missing a blank line after declarations

Signed-off-by: Jonas Hahnfeld <hahnjo@hahnjo.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jonas Hahnfeld 11 years ago
parent
commit
8c4842d682
2 changed files with 2 additions and 0 deletions
  1. 1 0
      drivers/staging/keucr/smilsub.c
  2. 1 0
      drivers/staging/keucr/transport.c

+ 1 - 0
drivers/staging/keucr/smilsub.c

@@ -133,6 +133,7 @@ void Set_D_LogBlockAddr(u8 *redundant)
 void Set_D_FailBlock(u8 *redundant)
 void Set_D_FailBlock(u8 *redundant)
 {
 {
 	char i;
 	char i;
+
 	for (i = 0; i < REDTSIZE; i++)
 	for (i = 0; i < REDTSIZE; i++)
 		*redundant++ = (u8)((i == REDT_BLOCK) ? 0xF0 : 0xFF);
 		*redundant++ = (u8)((i == REDT_BLOCK) ? 0xF0 : 0xFF);
 }
 }

+ 1 - 0
drivers/staging/keucr/transport.c

@@ -669,6 +669,7 @@ int usb_stor_Bulk_transport(struct scsi_cmnd *srb, struct us_data *us)
 	/*  R/W data */
 	/*  R/W data */
 	if (transfer_length) {
 	if (transfer_length) {
 		unsigned int pipe;
 		unsigned int pipe;
+
 		if (srb->sc_data_direction == DMA_FROM_DEVICE)
 		if (srb->sc_data_direction == DMA_FROM_DEVICE)
 			pipe = us->recv_bulk_pipe;
 			pipe = us->recv_bulk_pipe;
 		else
 		else