From: Himangi Saraogi Date: Wed, 5 Mar 2014 00:59:58 +0000 (+0530) Subject: staging:wlags49_h2:fix conditional statement warnings X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b16721b7dcc7a40a8b80f1dbbb5dedbbf82f44ce;p=linux-beck.git staging:wlags49_h2:fix conditional statement warnings 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wlags49_h2/wl_main.c b/drivers/staging/wlags49_h2/wl_main.c index 1874298ac9d6..119e7c8001db 100644 --- a/drivers/staging/wlags49_h2/wl_main.c +++ b/drivers/staging/wlags49_h2/wl_main.c @@ -118,8 +118,7 @@ ******************************************************************************/ #define VALID_PARAM(C) \ { \ - if (!(C)) \ - { \ + if (!(C)) { \ printk(KERN_INFO "Wireless, parameter error: \"%s\"\n", #C); \ goto failed; \ } \