From mboxrd@z Thu Jan 1 00:00:00 1970 From: Larry Finger Date: Wed, 25 Feb 2015 16:34:06 +0000 Subject: Re: [patch] rtlwifi: rtl8188ee: missing curly braces in handle_branch1() Message-Id: <54EDF97E.3060507@lwfinger.net> List-Id: References: <20150225132451.GL19745@mwanda> In-Reply-To: <20150225132451.GL19745@mwanda> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Dan Carpenter Cc: Chaoming Li , Kalle Valo , "John W. Linville" , linux-wireless@vger.kernel.org, kernel-janitors@vger.kernel.org On 02/25/2015 07:24 AM, Dan Carpenter wrote: >>>From the indenting, it seems like the READ_NEXT_PAIR() was supposed to > be inside the while loop. > > Signed-off-by: Dan Carpenter Good catch. Acked-by: Larry Finger Thanks, Larry > > diff --git a/drivers/net/wireless/rtlwifi/rtl8188ee/phy.c b/drivers/net/wireless/rtlwifi/rtl8188ee/phy.c > index 3f6c59c..a2bb02c 100644 > --- a/drivers/net/wireless/rtlwifi/rtl8188ee/phy.c > +++ b/drivers/net/wireless/rtlwifi/rtl8188ee/phy.c > @@ -452,9 +452,10 @@ static void handle_branch1(struct ieee80211_hw *hw, u16 arraylen, > READ_NEXT_PAIR(v1, v2, i); > while (v2 != 0xDEAD && > v2 != 0xCDEF && > - v2 != 0xCDCD && i < arraylen - 2) > + v2 != 0xCDCD && i < arraylen - 2) { > _rtl8188e_config_bb_reg(hw, v1, v2); > READ_NEXT_PAIR(v1, v2, i); > + } > > while (v2 != 0xDEAD && i < arraylen - 2) > READ_NEXT_PAIR(v1, v2, i); >