linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Glen Lee <glen.lee@atmel.com>
To: <gregkh@linuxfoundation.org>
Cc: <devel@driverdev.osuosl.org>, <linux-wireless@vger.kernel.org>,
	<tony.cho@atmel.com>, <glen.lee@atmel.com>, <leo.kim@atmel.com>,
	<austin.shin@atmel.com>, <adel.noureldin@atmel.com>,
	<adham.abozaeid@atmel.com>, <Nicolas.FERRE@atmel.com>
Subject: [PATCH 33/73] staging: wilc1000: remove warnings line over 80 characters
Date: Fri, 6 Nov 2015 11:12:54 +0900	[thread overview]
Message-ID: <1446776014-28094-33-git-send-email-glen.lee@atmel.com> (raw)
In-Reply-To: <1446776014-28094-1-git-send-email-glen.lee@atmel.com>

From: Leo Kim <leo.kim@atmel.com>

This patch removes the warnings reported by checkpatch.pl
for line over 80 characters.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
---
 drivers/staging/wilc1000/wilc_wlan.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/wilc1000/wilc_wlan.c b/drivers/staging/wilc1000/wilc_wlan.c
index 52351c6..66d7f1e 100644
--- a/drivers/staging/wilc1000/wilc_wlan.c
+++ b/drivers/staging/wilc1000/wilc_wlan.c
@@ -308,7 +308,10 @@ static inline int tcp_process(struct net_device *dev, struct txq_entry_t *tqe)
 			if (total_length == (IHL + data_offset)) {
 				u32 seq_no, ack_no;
 
-				seq_no	= (((u32)tcp_hdr_ptr[4]) << 24) + (((u32)tcp_hdr_ptr[5]) << 16) + (((u32)tcp_hdr_ptr[6]) << 8) + ((u32)tcp_hdr_ptr[7]);
+				seq_no = ((u32)tcp_hdr_ptr[4] << 24) +
+					 ((u32)tcp_hdr_ptr[5] << 16) +
+					 ((u32)tcp_hdr_ptr[6] << 8) +
+					 (u32)tcp_hdr_ptr[7];
 
 				ack_no = ((u32)tcp_hdr_ptr[8] << 24) +
 					 ((u32)tcp_hdr_ptr[9] << 16) +
-- 
1.9.1


  parent reply	other threads:[~2015-11-06  2:13 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-06  2:12 [PATCH 01/73] staging: wilc1000: fixes alignment should match open parenthesis Glen Lee
2015-11-06  2:12 ` [PATCH 02/73] staging: wilc1000: fixes a struct allocation to match coding standards Glen Lee
2015-11-06  2:12 ` [PATCH 03/73] staging: wilc1000: fixes that open brace { should be on the previous line Glen Lee
2015-11-06  2:12 ` [PATCH 04/73] staging: wilc1000: wilc_wlan.c: remove over-commenting Glen Lee
2015-11-06  2:12 ` [PATCH 05/73] staging: wilc1000: fixes please don't use multiple blank lines Glen Lee
2015-11-06  2:12 ` [PATCH 06/73] staging: wilc1000: fixes blank lines aren't necessary brace Glen Lee
2015-11-06  2:12 ` [PATCH 07/73] staging: wilc1000: fixes add blank line after function declaration Glen Lee
2015-11-06  2:12 ` [PATCH 08/73] staging: wilc1000: fixes missing a blank line after declarations Glen Lee
2015-11-06  2:12 ` [PATCH 09/73] staging: wilc1000: rename genuChipPSstate variable Glen Lee
2015-11-06  2:12 ` [PATCH 10/73] staging: wilc1000: replace explicit NULL comparisons with ! Glen Lee
2015-11-06  2:12 ` [PATCH 11/73] staging: wilc1000: rename Statisitcs_totalAcks variable Glen Lee
2015-11-06  2:12 ` [PATCH 12/73] staging: wilc1000: rename Statisitcs_DroppedAcks variable Glen Lee
2015-11-06  2:12 ` [PATCH 13/73] staging: wilc1000: rename Ack_session_info struct variable Glen Lee
2015-11-06  2:12 ` [PATCH 14/73] staging: wilc1000: rename Ack_seq_num of struct ack_session_info Glen Lee
2015-11-06  2:12 ` [PATCH 15/73] staging: wilc1000: rename Bigger_Ack_num " Glen Lee
2015-11-06  2:12 ` [PATCH 16/73] staging: wilc1000: remove typedef of struct Pending_Acks_info_t Glen Lee
2015-11-06  2:12 ` [PATCH 17/73] staging: wilc1000: rename Session_index of struct pending_acks_info Glen Lee
2015-11-06  2:12 ` [PATCH 18/73] staging: wilc1000: rename Acks_keep_track_info variable Glen Lee
2015-11-06  2:12 ` [PATCH 19/73] staging: wilc1000: rename Pending_Acks_info variable Glen Lee
2015-11-06  2:12 ` [PATCH 20/73] staging: wilc1000: rename PendingAcks_arrBase variable Glen Lee
2015-11-06  2:12 ` [PATCH 21/73] staging: wilc1000: rename Opened_TCP_session variable Glen Lee
2015-11-06  2:12 ` [PATCH 22/73] staging: wilc1000: rename Pending_Acks variable Glen Lee
2015-11-06  2:12 ` [PATCH 23/73] staging: wilc1000: rename Init_TCP_tracking function Glen Lee
2015-11-06  2:12 ` [PATCH 24/73] staging: wilc1000: rename add_TCP_track_session function Glen Lee
2015-11-06  2:12 ` [PATCH 25/73] staging: wilc1000: rename Update_TCP_track_session function Glen Lee
2015-11-06  2:12 ` [PATCH 26/73] staging: wilc1000: rename add_TCP_Pending_Ack function Glen Lee
2015-11-06  2:12 ` [PATCH 27/73] staging: wilc1000: rename Ack member variable Glen Lee
2015-11-06  2:12 ` [PATCH 28/73] staging: wilc1000: rename Session_index " Glen Lee
2015-11-06  2:12 ` [PATCH 29/73] staging: wilc1000: remove do-nothing else condition case Glen Lee
2015-11-06  2:12 ` [PATCH 30/73] staging: wilc1000: rename Total_Length variable Glen Lee
2015-11-06  2:12 ` [PATCH 31/73] staging: wilc1000: rename Data_offset variable Glen Lee
2015-11-06  2:12 ` [PATCH 32/73] staging: wilc1000: rename Ack_no variable Glen Lee
2015-11-06  2:12 ` Glen Lee [this message]
2015-11-06  2:12 ` [PATCH 34/73] staging: wilc1000: rename Dropped variable Glen Lee
2015-11-06  2:12 ` [PATCH 35/73] staging: wilc1000: rename EnableTCPAckFilter variable Glen Lee
2015-11-06  2:12 ` [PATCH 36/73] staging: wilc1000: rename Enable_TCP_ACK_Filter function Glen Lee
2015-11-06  2:12 ` [PATCH 37/73] staging: wilc1000: rename is_TCP_ACK_Filter_Enabled function Glen Lee
2015-11-06  2:12 ` [PATCH 38/73] staging: wilc1000: fixes a struct allocation to match coding standards Glen Lee
2015-11-06  2:13 ` [PATCH 39/73] staging: wilc1000: remove unused argument of chip_sleep_manually function Glen Lee
2015-11-06  2:13 ` [PATCH 40/73] staging: wilc1000: rename pu32TxqCount in wilc_wlan_handle_txq function Glen Lee
2015-11-06  2:13 ` [PATCH 41/73] staging: wilc1000: fixes else should follow close brace '}' Glen Lee
2015-11-06  2:13 ` [PATCH 42/73] staging: wilc1000: rename pBSSID variable Glen Lee
2015-11-06  2:13 ` [PATCH 43/73] staging: wilc1000: fixes a struct allocation to match coding standards Glen Lee
2015-11-06  2:13 ` [PATCH 44/73] staging: wilc1000: rename bValue in set_machw_change_vir_if function Glen Lee
2015-11-06  2:13 ` [PATCH 45/73] staging: wilc1000: fixes braces {} should be used on all arms of this statement Glen Lee
2015-11-06  2:13 ` [PATCH 46/73] staging: wilc1000: fixes braces {} are not necessary for any arm " Glen Lee
2015-11-06  2:13 ` [PATCH 47/73] staging: wilc1000: rename drvHandler in wilc_wlan_cfg_commit function Glen Lee
2015-11-06  2:13 ` [PATCH 48/73] staging: wilc1000: rename drvHandler in wilc_wlan_cfg_set function Glen Lee
2015-11-06  2:13 ` [PATCH 49/73] staging: wilc1000: rename drvHandler in wilc_wlan_cfg_get function Glen Lee

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1446776014-28094-33-git-send-email-glen.lee@atmel.com \
    --to=glen.lee@atmel.com \
    --cc=Nicolas.FERRE@atmel.com \
    --cc=adel.noureldin@atmel.com \
    --cc=adham.abozaeid@atmel.com \
    --cc=austin.shin@atmel.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=leo.kim@atmel.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=tony.cho@atmel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).