Staging: i2o: Removed unnecessary braces
authorYeliz Taneroglu <yeliztaneroglu@gmail.com>
Wed, 25 Feb 2015 23:45:36 +0000 (01:45 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Feb 2015 20:23:59 +0000 (12:23 -0800)
The following patch fixes the checkpatch.pl warning:
WARNING: braces {} are not necessary for single statement blocks

Signed-off-by: Yeliz Taneroglu <yeliztaneroglu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/i2o/i2o_proc.c

index cea536a..27d6b82 100644 (file)
@@ -85,9 +85,8 @@ static int print_serial_number(struct seq_file *seq, u8 * serialno, int max_len)
        switch (serialno[0]) {
        case I2O_SNFORMAT_BINARY:       /* Binary */
                seq_printf(seq, "0x");
-               for (i = 0; i < serialno[1]; i++) {
+               for (i = 0; i < serialno[1]; i++)
                        seq_printf(seq, "%02X", serialno[2 + i]);
-               }
                break;
 
        case I2O_SNFORMAT_ASCII:        /* ASCII */
@@ -101,9 +100,8 @@ static int print_serial_number(struct seq_file *seq, u8 * serialno, int max_len)
                        seq_printf(seq, "%s", &serialno[2]);
                } else {
                        /* print chars for specified length */
-                       for (i = 0; i < serialno[1]; i++) {
+                       for (i = 0; i < serialno[1]; i++)
                                seq_printf(seq, "%c", serialno[2 + i]);
-                       }
                }
                break;