All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mwifiex: fix code mis-alignment after the if statement
@ 2012-08-07  2:26 Fengguang Wu
  2012-08-07  2:35 ` Bing Zhao
  0 siblings, 1 reply; 2+ messages in thread
From: Fengguang Wu @ 2012-08-07  2:26 UTC (permalink / raw)
  To: Amitkumar Karwar; +Cc: Bing Zhao, John W. Linville, linux-wireless

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
 drivers/net/wireless/mwifiex/scan.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- linux.orig/drivers/net/wireless/mwifiex/scan.c	2012-07-25 19:09:37.939358714 +0800
+++ linux/drivers/net/wireless/mwifiex/scan.c	2012-08-07 10:21:20.303090255 +0800
@@ -1433,9 +1433,9 @@ int mwifiex_check_network_compatibility(
 			if (ret)
 				dev_err(priv->adapter->dev, "cannot find ssid "
 					"%s\n", bss_desc->ssid.ssid);
-				break;
+			break;
 		default:
-				ret = 0;
+			ret = 0;
 		}
 	}
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

* RE: [PATCH] mwifiex: fix code mis-alignment after the if statement
  2012-08-07  2:26 [PATCH] mwifiex: fix code mis-alignment after the if statement Fengguang Wu
@ 2012-08-07  2:35 ` Bing Zhao
  0 siblings, 0 replies; 2+ messages in thread
From: Bing Zhao @ 2012-08-07  2:35 UTC (permalink / raw)
  To: Fengguang Wu, Amitkumar Karwar; +Cc: John W. Linville, linux-wireless

Hi Fengguang,

Thanks for the patch.

> Subject: [PATCH] mwifiex: fix code mis-alignment after the if statement
> 
> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>

Acked-by: Bing Zhao <bzhao@marvell.com>

Thanks,
Bing

> ---
>  drivers/net/wireless/mwifiex/scan.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> --- linux.orig/drivers/net/wireless/mwifiex/scan.c	2012-07-25 19:09:37.939358714 +0800
> +++ linux/drivers/net/wireless/mwifiex/scan.c	2012-08-07 10:21:20.303090255 +0800
> @@ -1433,9 +1433,9 @@ int mwifiex_check_network_compatibility(
>  			if (ret)
>  				dev_err(priv->adapter->dev, "cannot find ssid "
>  					"%s\n", bss_desc->ssid.ssid);
> -				break;
> +			break;
>  		default:
> -				ret = 0;
> +			ret = 0;
>  		}
>  	}
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-08-07  2:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-07  2:26 [PATCH] mwifiex: fix code mis-alignment after the if statement Fengguang Wu
2012-08-07  2:35 ` Bing Zhao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.