From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 552D13793AA for ; Mon, 4 May 2026 09:28:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777886913; cv=none; b=Hxtc8eZpt9sb/HrjkZ44EuFoMdsJSNPhhSgOjeX21KoCiYkdjp4/DdFA3RkgMo0Z5KES8gGKawz6tUErmHLZqjNUOSWnX9qarTBeL90SwUWqJs/RTFhimg6o24iV9ucmP9OE8JSlp5j8W1S7I/pgjxEksCjUbbRhmO77FBWAVLU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777886913; c=relaxed/simple; bh=ObFHFHgWEK21LFHPhOib4lAa/zH1fhenoitLBid+ngc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Rxv1FFJAZlYUowc8VMUhvHq2/vQs6+pO4oJqFHDlTxGdaWUuqI7N7VAlgOBZOKP4K+/eN59fZkKdDD2JGiwGY+d/Sor8BtwYQzALP9jjyWdK/gnFbHPmxJcN4xreCWOIjjyje4n46F7E1o7NXgIZm+qlP/bAgi8cCqTUs504Lc8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hfGRI6rY; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="hfGRI6rY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8E420C2BCB8; Mon, 4 May 2026 09:28:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1777886912; bh=ObFHFHgWEK21LFHPhOib4lAa/zH1fhenoitLBid+ngc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hfGRI6rY152iOj7nFpM9hx4ZDG12lKNOSz23dYzBZUH7B+RxXOthHeLVLpZ1Nwvhu EaorqfIiFVw1XwbBoZTqGnEoY1LHOQHXI2PC+w5tp5OcdA6Rn6Cjek1zR/zkFeU1Kc JTV0S7z6VTSCwbjlg5qOvoE03hGEjyXtR+kg6MxE= Date: Mon, 4 May 2026 11:28:30 +0200 From: Greg KH To: Moksh Panicker Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] staging: rtl8723bs: remove blank line after open brace in hal_com.c Message-ID: <2026050434-unleveled-syrup-5ae1@gregkh> References: <20260503181646.54816-1-mokshpanicker.7@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260503181646.54816-1-mokshpanicker.7@gmail.com> On Sun, May 03, 2026 at 06:16:46PM +0000, Moksh Panicker wrote: > Remove unnecessary blank line after the opening brace of a for loop. > This fixes the following checkpatch.pl warning: > > CHECK: Blank lines aren't necessary after an open brace '{' > Signed-off-by: Moksh Panicker > --- > drivers/staging/rtl8723bs/hal/hal_com.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/staging/rtl8723bs/hal/hal_com.c b/drivers/staging/rtl8723bs/hal/hal_com.c > index b4b135a9ca22..3c85e96ec57d 100644 > --- a/drivers/staging/rtl8723bs/hal/hal_com.c > +++ b/drivers/staging/rtl8723bs/hal/hal_com.c > @@ -252,7 +252,6 @@ void HalSetBrateCfg(struct adapter *Adapter, u8 *mBratesOS, u16 *pBrateCfg) > u8 i, is_brate, brate; > > for (i = 0; i < NDIS_802_11_LENGTH_RATES_EX; i++) { > - > is_brate = mBratesOS[i] & IEEE80211_BASIC_RATE_MASK; > brate = mBratesOS[i] & 0x7f; > > -- > 2.34.1 > For all of your patches you are not sending them to the staging mailing list, why not? What kernel version are you working off of that shows the driverdev mailing list as still alive? Please resend all of your submitted patches to the list that scripts/get_maintainer.pl shows to send to, as a patch series, and we will be glad to review them there. thanks, greg k-h