[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2024082207-enunciate-whacky-e1c4@gregkh>
Date: Thu, 22 Aug 2024 15:53:39 +0800
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: Ana Carolina Hernandes <anachan.01h@...il.com>
Cc: linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org,
~lkcamp/patches@...ts.sr.ht
Subject: Re: [PATCH] Staging: rtl8192e: Fix arguments alignment
On Wed, Aug 21, 2024 at 09:30:43PM -0300, Ana Carolina Hernandes wrote:
> Fix the alignment of arguments in function _rtl92e_query_rxphystatus in
> order to silence the following checkpatch warning:
>
> CHECK: Lines should not end with a '('
>
> Signed-off-by: Ana Carolina Hernandes <anachan.01h@...il.com>
> ---
> .../staging/rtl8192e/rtl8192e/r8192E_dev.c | 19 +++++++++----------
> 1 file changed, 9 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
> index b3d4b3394284..bca6e4f57bf2 100644
> --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
> +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
> @@ -1145,16 +1145,15 @@ static long _rtl92e_signal_scale_mapping(struct r8192_priv *priv, long currsig)
> _pdrvinfo->RxRate == DESC90_RATE11M) &&\
> !_pdrvinfo->RxHT)
>
> -static void _rtl92e_query_rxphystatus(
> - struct r8192_priv *priv,
> - struct rtllib_rx_stats *pstats,
> - struct rx_desc *pdesc,
> - struct rx_fwinfo *pdrvinfo,
> - struct rtllib_rx_stats *precord_stats,
> - bool bpacket_match_bssid,
> - bool bpacket_toself,
> - bool bPacketBeacon,
> - bool bToSelfBA
> +static void _rtl92e_query_rxphystatus(struct r8192_priv *priv,
> + struct rtllib_rx_stats *pstats,
> + struct rx_desc *pdesc,
> + struct rx_fwinfo *pdrvinfo,
> + struct rtllib_rx_stats *precord_stats,
> + bool bpacket_match_bssid,
> + bool bpacket_toself,
> + bool bPacketBeacon,
> + bool bToSelfBA
> )
So close, why leave the ")" on the line all by itself there? It needs
to go up one line, didn't checkpatch tell you that when you ran it on
this change?
thanks,
greg k-h
Powered by blists - more mailing lists