staging:wlags49_h2:fix conditional statement warnings
authorHimangi Saraogi <himangi774@gmail.com>
Wed, 5 Mar 2014 00:59:58 +0000 (06:29 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Mar 2014 22:52:27 +0000 (14:52 -0800)
This patch fixes the following warnings:
WARNING: that open brace { should be on the previous line
WARNING: suspect code indent for conditional statements (16, 16)

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlags49_h2/wl_main.c

index 1874298..119e7c8 100644 (file)
  ******************************************************************************/
 #define VALID_PARAM(C) \
        { \
-               if (!(C)) \
-               { \
+               if (!(C)) { \
                        printk(KERN_INFO "Wireless, parameter error: \"%s\"\n", #C); \
                        goto failed; \
                } \