Return-path: Received: from esa3.microchip.iphmx.com ([68.232.153.233]:64988 "EHLO esa3.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726471AbeHXNFV (ORCPT ); Fri, 24 Aug 2018 09:05:21 -0400 Subject: Re: [PATCH 20/24] staging: wilc1000: avoid line over 80 chars in tcp_process() To: Ajay Singh CC: , , , , , , References: <1534229416-13254-1-git-send-email-ajay.kathat@microchip.com> <1534229416-13254-21-git-send-email-ajay.kathat@microchip.com> <20180823160315.168c49e5@ajaysk-VirtualBox> From: Claudiu Beznea Message-ID: <5e649eea-db3a-a8fd-a15b-ad253d1de118@microchip.com> (sfid-20180824_113135_980423_396AD0D4) Date: Fri, 24 Aug 2018 12:31:28 +0300 MIME-Version: 1.0 In-Reply-To: <20180823160315.168c49e5@ajaysk-VirtualBox> Content-Type: text/plain; charset="utf-8" Sender: linux-wireless-owner@vger.kernel.org List-ID: On 23.08.2018 13:33, Ajay Singh wrote: > On Thu, 23 Aug 2018 11:12:08 +0300 > Claudiu Beznea wrote: > >> On 14.08.2018 09:50, Ajay Singh wrote: >>> Cleanup patch to avoid line over 80 chars issue reported by >>> checkpatch.pl script. >>> >>> Signed-off-by: Ajay Singh >>> --- >>> drivers/staging/wilc1000/wilc_wlan.c | 7 ++++++- >>> 1 file changed, 6 insertions(+), 1 deletion(-) >>> >>> diff --git a/drivers/staging/wilc1000/wilc_wlan.c >>> b/drivers/staging/wilc1000/wilc_wlan.c index 041c9dd..f0743d9 100644 >>> --- a/drivers/staging/wilc1000/wilc_wlan.c >>> +++ b/drivers/staging/wilc1000/wilc_wlan.c >>> @@ -137,6 +137,11 @@ static inline int add_tcp_pending_ack(struct >>> wilc_vif *vif, u32 ack, return 0; >>> } >>> >>> +static inline void clear_tcp_session_txq(struct wilc_vif *vif, int >>> index) +{ >>> + vif->ack_filter.pending_acks_info[index].txqe = NULL; >>> +} >>> + >> >> This seems useless to me... > > Sorry, this point is not fully clear to me. > > Did you mean setting of 'NULL' to 'pending_acks_info[index].txqe' is > not required? > No, having a new function that sets a variable just to avoid line over 80 warning. > >> >>> static inline void tcp_process(struct net_device *dev, struct >>> txq_entry_t *tqe) { >>> void *buffer = tqe->buffer; >>> @@ -670,7 +675,7 @@ int wilc_wlan_handle_txq(struct net_device >>> *dev, u32 *txq_count) tqe->tx_complete_func(tqe->priv, tqe->status); >>> if (tqe->tcp_pending_ack_idx != NOT_TCP_ACK && >>> tqe->tcp_pending_ack_idx < MAX_PENDING_ACKS) >>> - >>> vif->ack_filter.pending_acks_info[tqe->tcp_pending_ack_idx].txqe = >>> NULL; >>> + clear_tcp_session_txq(vif, >>> tqe->tcp_pending_ack_idx); kfree(tqe); >>> } while (--entries); >>> >>> > >